Source-Changes-HG archive

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

[src/trunk]: src/sys/net fix comment, sync with kame



details:   https://anonhg.NetBSD.org/src/rev/fc6f4e680671
branches:  trunk
changeset: 536501:fc6f4e680671
user:      itojun <itojun%NetBSD.org@localhost>
date:      Tue Sep 17 06:32:49 2002 +0000

description:
fix comment, sync with kame

diffstat:

 sys/net/if_stf.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 940956a0f89f -r fc6f4e680671 sys/net/if_stf.c
--- a/sys/net/if_stf.c  Tue Sep 17 06:26:18 2002 +0000
+++ b/sys/net/if_stf.c  Tue Sep 17 06:32:49 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_stf.c,v 1.30 2002/09/17 05:56:37 itojun Exp $       */
+/*     $NetBSD: if_stf.c,v 1.31 2002/09/17 06:32:49 itojun Exp $       */
 /*     $KAME: if_stf.c,v 1.62 2001/06/07 22:32:16 itojun Exp $ */
 
 /*
@@ -75,7 +75,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_stf.c,v 1.30 2002/09/17 05:56:37 itojun Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_stf.c,v 1.31 2002/09/17 06:32:49 itojun Exp $");
 
 #include "opt_inet.h"
 
@@ -474,7 +474,6 @@
        /*
         * returns 1 if private address range:
         * 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16
-        * (requirement from RFC3056 section 2 1st paragraph)
         */
        if ((ntohl(in->s_addr) & 0xff000000) >> 24 == 10 ||
            (ntohl(in->s_addr) & 0xfff00000) >> 16 == 172 * 256 + 16 ||



Home | Main Index | Thread Index | Old Index