From c50ae8baf610d3d041fdedb78df205c999be57a9 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 11 May 2004 11:31:07 +0000 Subject: 2004-05-11 Paul Jakma * ioctl.h: Add if_ioctl_ipv6 prototype and AF_IOCTL for SOLARIS_IPV6 * kernel_socket.c: Fix SAROUNDUP, compiler doesnt like do..while RHS in assignments :) * redistribute.c: (zebra_interface_delete_update) only used if RTM_IFANNOUNCE and NETLINK is available. --- zebra/ioctl.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'zebra/ioctl.h') diff --git a/zebra/ioctl.h b/zebra/ioctl.h index 157fc44e..eadc69a0 100644 --- a/zebra/ioctl.h +++ b/zebra/ioctl.h @@ -40,7 +40,15 @@ void if_get_mtu (struct interface *); #ifdef HAVE_IPV6 int if_prefix_add_ipv6 (struct interface *, struct connected *); int if_prefix_delete_ipv6 (struct interface *, struct connected *); - #endif /* HAVE_IPV6 */ +#ifdef SOLARIS_IPV6 +int if_ioctl_ipv6(u_long, caddr_t); +struct connected *if_lookup_linklocal( struct interface *); + +#define AF_IOCTL(af, request, buffer) \ + ((af) == AF_INET? if_ioctl(request, buffer) : \ + if_ioctl_ipv6(request, buffer)) +#endif /* SOLARIS_IPV6 */ + #endif /* _ZEBRA_IOCTL_H */ -- cgit v1.2.1