Changes to update Tomato RAF.
[tomato.git] / release / src / router / igmpproxy / src / os-netbsd.h
blob17bd5fa1fe9854b6142e257404d71ee2f6a3be3e
1 #include <netinet/in_systm.h>
2 #include <netinet/ip_mroute.h>
3 #include <netinet/ip.h>
4 #include <netinet/igmp.h>
6 #define IGMP_MEMBERSHIP_QUERY IGMP_HOST_MEMBERSHIP_QUERY
7 #define IGMP_V1_MEMBERSHIP_REPORT IGMP_v1_HOST_MEMBERSHIP_REPORT
8 #define IGMP_V2_MEMBERSHIP_REPORT IGMP_v2_HOST_MEMBERSHIP_REPORT
9 #define IGMP_V2_LEAVE_GROUP IGMP_HOST_LEAVE_MESSAGE
11 static inline u_short ip_data_len(const struct ip *ip)
13 return ip->ip_len;
16 static inline void ip_set_len(struct ip *ip, u_short len)
18 ip->ip_len = len;