diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2017-02-22 13:46:54 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2017-02-22 13:46:54 +0000 |
commit | 1cca1cb2b5ca1962b4952daccfd2a742de8ea1e4 (patch) | |
tree | a3af5e406b5ff6a7519fe03cb3fde55f018dc3c0 /sys/netinet6 | |
parent | 048e26e4932e55c577c4f4b74207ad40f0f7f3ef (diff) |
Fix comments about a few ipv6 sockoptions
OK millert@ florian@
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/in6.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h index 1a1278b7870..6f12fe5e3c1 100644 --- a/sys/netinet6/in6.h +++ b/sys/netinet6/in6.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in6.h,v 1.92 2016/12/22 11:04:44 rzalamena Exp $ */ +/* $OpenBSD: in6.h,v 1.93 2017/02/22 13:46:53 renato Exp $ */ /* $KAME: in6.h,v 1.83 2001/03/29 02:55:07 jinmei Exp $ */ /* @@ -294,9 +294,9 @@ struct route_in6 { * First word of comment is data type; bool is stored in int. */ #define IPV6_UNICAST_HOPS 4 /* int; IP6 hops */ -#define IPV6_MULTICAST_IF 9 /* u_char; set/get IP6 multicast i/f */ -#define IPV6_MULTICAST_HOPS 10 /* u_char; set/get IP6 multicast hops */ -#define IPV6_MULTICAST_LOOP 11 /* u_char; set/get IP6 multicast loopback */ +#define IPV6_MULTICAST_IF 9 /* u_int; set/get IP6 multicast i/f */ +#define IPV6_MULTICAST_HOPS 10 /* u_int; set/get IP6 multicast hops */ +#define IPV6_MULTICAST_LOOP 11 /* u_int; set/get IP6 multicast loopback */ #define IPV6_JOIN_GROUP 12 /* ip6_mreq; join a group membership */ #define IPV6_LEAVE_GROUP 13 /* ip6_mreq; leave a group membership */ #define IPV6_PORTRANGE 14 /* int; range to choose for unspec port */ |