diff options
Diffstat (limited to 'sbin/rdisc/rdisc.h')
-rw-r--r-- | sbin/rdisc/rdisc.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/sbin/rdisc/rdisc.h b/sbin/rdisc/rdisc.h deleted file mode 100644 index 507c9ce..0000000 --- a/sbin/rdisc/rdisc.h +++ /dev/null @@ -1,19 +0,0 @@ -/* From net/if.h */ - -#define IFF_MULTICAST 0x800 /* supports multicast */ - -/* From netinet/in.h */ - -#define INADDR_ALLHOSTS_GROUP (u_long)0xe0000001 /* 224.0.0.1 */ -#define IP_MULTICAST_IF 0x10 /* set/get IP multicast interface */ -#define IP_ADD_MEMBERSHIP 0x13 /* add an IP group membership */ -#define IP_MULTICAST_TTL 0x11 /* set/get IP multicast timetolive */ - -/* - * Argument structure for IP_ADD_MEMBERSHIP and IP_DROP_MEMBERSHIP. - */ -struct ip_mreq { - struct in_addr imr_multiaddr; /* IP multicast address of group */ - struct in_addr imr_interface; /* local IP address of interface */ -}; - |