Module Name:    src
Committed By:   christos
Date:           Fri Aug 30 07:42:08 UTC 2013

Modified Files:
        src/sys/netinet6: frag6.c

Log Message:
draft-gont-6man-ipv6-atomic-fragment-00 is now RFC 6949 (Loganaden Velvindron
logan at elandsys dot com)


To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/sys/netinet6/frag6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet6/frag6.c
diff -u src/sys/netinet6/frag6.c:1.54 src/sys/netinet6/frag6.c:1.55
--- src/sys/netinet6/frag6.c:1.54	Thu Sep 27 19:10:00 2012
+++ src/sys/netinet6/frag6.c	Fri Aug 30 03:42:08 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: frag6.c,v 1.54 2012/09/27 23:10:00 christos Exp $	*/
+/*	$NetBSD: frag6.c,v 1.55 2013/08/30 07:42:08 christos Exp $	*/
 /*	$KAME: frag6.c,v 1.40 2002/05/27 21:40:31 itojun Exp $	*/
 
 /*
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: frag6.c,v 1.54 2012/09/27 23:10:00 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: frag6.c,v 1.55 2013/08/30 07:42:08 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -172,10 +172,10 @@ frag6_input(struct mbuf **mp, int *offp,
 	offset += sizeof(struct ip6_frag);
 
 	/*
-	 * draft-gont-6man-ipv6-atomic-fragments-00:  A host that receives an
-	 * IPv6 packet which includes a Fragment Header with the "Fragment
-	 * Offset" equal to 0 and the "M" bit equal to 0 MUST process such
-	 * packet in isolation from any other packets/fragments.
+	 * RFC6946:  A host that receives an IPv6 packet which includes 
+	 * a Fragment Header with the "Fragmen Offset" equal to 0 and 
+	 * the "M" bit equal to 0 MUST process such packet in isolation
+	 *  from any other packets/fragments.
 	 */
 	fragoff = ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK);
 	if (fragoff == 0 && !(ip6f->ip6f_offlg & IP6F_MORE_FRAG)) {

Reply via email to