tech-net archive

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

atomic fragment draft -> RFC6946 diff



draft-gont-6man-ipv6-atomic-fragment-00 is now RFC 6949.

Maybe comments should reflect that as well ?


Index: frag6.c
===================================================================
RCS file: /cvsroot/src/sys/netinet6/frag6.c,v
retrieving revision 1.54
diff -u -p -r1.54 frag6.c
--- frag6.c     27 Sep 2012 23:10:00 -0000      1.54
+++ frag6.c     30 Aug 2013 06:04:10 -0000
@@ -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)) {


Home | Main Index | Thread Index | Old Index