Source-Changes-HG archive

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

[src/netbsd-2-0]: src/sys/netinet6 Pull up revision 1.65 (requested by itojun...



details:   https://anonhg.NetBSD.org/src/rev/6ef655a1ba36
branches:  netbsd-2-0
changeset: 561371:6ef655a1ba36
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Jun 14 18:01:01 2004 +0000

description:
Pull up revision 1.65 (requested by itojun in ticket #468):
implement IPV6_USE_MIN_MTU sockopt.  needed by bind9 + EDNS0 + big receive buffer.

diffstat:

 sys/netinet6/raw_ip6.c |  6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 56db29431105 -r 6ef655a1ba36 sys/netinet6/raw_ip6.c
--- a/sys/netinet6/raw_ip6.c    Mon Jun 14 18:00:54 2004 +0000
+++ b/sys/netinet6/raw_ip6.c    Mon Jun 14 18:01:01 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: raw_ip6.c,v 1.63 2003/10/30 01:43:10 simonb Exp $      */
+/*     $NetBSD: raw_ip6.c,v 1.63.2.1 2004/06/14 18:01:01 tron Exp $    */
 /*     $KAME: raw_ip6.c,v 1.82 2001/07/23 18:57:56 jinmei Exp $        */
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: raw_ip6.c,v 1.63 2003/10/30 01:43:10 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: raw_ip6.c,v 1.63.2.1 2004/06/14 18:01:01 tron Exp $");
 
 #include "opt_ipsec.h"
 
@@ -500,10 +500,8 @@
        }
 
        flags = 0;
-#ifdef IN6P_MINMTU
        if (in6p->in6p_flags & IN6P_MINMTU)
                flags |= IPV6_MINMTU;
-#endif
 
        error = ip6_output(m, optp, &in6p->in6p_route, flags,
            in6p->in6p_moptions, so, &oifp);



Home | Main Index | Thread Index | Old Index