svn commit: r235705 - stable/9/sys/netinet

Bjoern A. Zeeb bz at FreeBSD.org
Sun May 20 23:33:11 UTC 2012


Author: bz
Date: Sun May 20 23:33:10 2012
New Revision: 235705
URL: http://svn.freebsd.org/changeset/base/235705

Log:
  MFC r232513:
  
   Correct typo in the RFC number for the constants based on IANA assignments
   for IPv6 Neighbor Discovery Option types for "IPv6 Router Advertisement
   Options for DNS Configuration".  It is RFC 6106.

Modified:
  stable/9/sys/netinet/icmp6.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netinet/icmp6.h
==============================================================================
--- stable/9/sys/netinet/icmp6.h	Sun May 20 22:58:37 2012	(r235704)
+++ stable/9/sys/netinet/icmp6.h	Sun May 20 23:33:10 2012	(r235705)
@@ -298,8 +298,8 @@ struct nd_opt_hdr {		/* Neighbor discove
 #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_RDNSS			25	/* RFC 6106 */
+#define ND_OPT_DNSSL			31	/* RFC 6106 */
 
 struct nd_opt_prefix_info {	/* prefix information */
 	u_int8_t	nd_opt_pi_type;


More information about the svn-src-all mailing list