diff options
author | paul <paul> | 2004-05-11 13:31:07 +0200 |
---|---|---|
committer | paul <paul> | 2004-05-11 13:31:07 +0200 |
commit | c50ae8baf610d3d041fdedb78df205c999be57a9 (patch) | |
tree | ceced067b2a3209b708c90787b4f870f43fec180 /zebra/ioctl.h | |
parent | 2004-05-11 Paul Jakma <paul@dishone.st> (diff) | |
download | frr-c50ae8baf610d3d041fdedb78df205c999be57a9.tar.xz frr-c50ae8baf610d3d041fdedb78df205c999be57a9.zip |
2004-05-11 Paul Jakma <paul@dishone.st>
* 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.
Diffstat (limited to 'zebra/ioctl.h')
-rw-r--r-- | zebra/ioctl.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/zebra/ioctl.h b/zebra/ioctl.h index 157fc44ec..eadc69a01 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 */ |