diff options
| -rw-r--r-- | src/const.cstub | 21 | ||||
| -rw-r--r-- | src/const.def | 8 |
2 files changed, 29 insertions, 0 deletions
diff --git a/src/const.cstub b/src/const.cstub index b3a2ee468..553e47f8c 100644 --- a/src/const.cstub +++ b/src/const.cstub @@ -175,6 +175,27 @@ #ifdef IP_XFRM_POLICY define_const(IP_XFRM_POLICY); #endif +#ifdef IPV6_JOIN_GROUP + define_const(IPV6_JOIN_GROUP); +#endif +#ifdef IPV6_LEAVE_GROUP + define_const(IPV6_LEAVE_GROUP); +#endif +#ifdef IPV6_MULTICAST_HOPS + define_const(IPV6_MULTICAST_HOPS); +#endif +#ifdef IPV6_MULTICAST_IF + define_const(IPV6_MULTICAST_IF); +#endif +#ifdef IPV6_MULTICAST_LOOP + define_const(IPV6_MULTICAST_LOOP); +#endif +#ifdef IPV6_UNICAST_HOPS + define_const(IPV6_UNICAST_HOPS); +#endif +#ifdef IPV6_V6ONLY + define_const(IPV6_V6ONLY); +#endif #ifdef IPPROTO_AH define_const(IPPROTO_AH); #endif diff --git a/src/const.def b/src/const.def index 1508a143e..e0ee5e2a4 100644 --- a/src/const.def +++ b/src/const.def @@ -60,6 +60,14 @@ IP_TTL IP_UNBLOCK_SOURCE IP_XFRM_POLICY +IPV6_JOIN_GROUP +IPV6_LEAVE_GROUP +IPV6_MULTICAST_HOPS +IPV6_MULTICAST_IF +IPV6_MULTICAST_LOOP +IPV6_UNICAST_HOPS +IPV6_V6ONLY + IPPROTO_AH IPPROTO_DSTOPTS IPPROTO_ESP |
