Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netinet6 draft-gont-6man-ipv6-atomic-fragment-00 is now ...



details:   https://anonhg.NetBSD.org/src/rev/4a9c7bb56744
branches:  trunk
changeset: 789650:4a9c7bb56744
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Aug 30 07:42:08 2013 +0000

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

diffstat:

 sys/netinet6/frag6.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (33 lines):

diff -r 8d587fa86017 -r 4a9c7bb56744 sys/netinet6/frag6.c
--- a/sys/netinet6/frag6.c      Fri Aug 30 07:35:44 2013 +0000
+++ b/sys/netinet6/frag6.c      Fri Aug 30 07:42:08 2013 +0000
@@ -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 @@
        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)) {



Home | Main Index | Thread Index | Old Index