Date: Sun, 29 May 2011 05:45:56 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r222443 - user/hrs/ipv6/sys/netinet Message-ID: <201105290545.p4T5juw5016742@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hrs Date: Sun May 29 05:45:56 2011 New Revision: 222443 URL: http://svn.freebsd.org/changeset/base/222443 Log: Correct bogus ND_OPT_ROUTE_INFO value to one in RFC 4191. The draft-ietf-ipngwg-router-preference did not define the type value and "200" was never used actually. Modified: user/hrs/ipv6/sys/netinet/icmp6.h Modified: user/hrs/ipv6/sys/netinet/icmp6.h ============================================================================== --- user/hrs/ipv6/sys/netinet/icmp6.h Sun May 29 05:24:58 2011 (r222442) +++ user/hrs/ipv6/sys/netinet/icmp6.h Sun May 29 05:45:56 2011 (r222443) @@ -297,11 +297,10 @@ struct nd_opt_hdr { /* Neighbor discove #define ND_OPT_PREFIX_INFORMATION 3 #define ND_OPT_REDIRECTED_HEADER 4 #define ND_OPT_MTU 5 +#define ND_OPT_ROUTE_INFO 24 /* RFC 4191 */ #define ND_OPT_RDNSS 25 /* RFC 6016 */ #define ND_OPT_DNSSL 31 /* RFC 6016 */ -#define ND_OPT_ROUTE_INFO 200 /* draft-ietf-ipngwg-router-preference, not officially assigned yet */ - struct nd_opt_prefix_info { /* prefix information */ u_int8_t nd_opt_pi_type; u_int8_t nd_opt_pi_len;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105290545.p4T5juw5016742>