svn commit: r222443 - user/hrs/ipv6/sys/netinet

Hiroki Sato hrs at FreeBSD.org
Sun May 29 05:45:57 UTC 2011


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;


More information about the svn-src-user mailing list