[Glibc-bsd-commits] r3048 - in trunk/kfreebsd-8/debian: . patches

Aurelien Jarno aurel32 at alioth.debian.org
Wed Jun 23 20:35:45 UTC 2010


Author: aurel32
Date: 2010-06-23 20:35:24 +0000 (Wed, 23 Jun 2010)
New Revision: 3048

Added:
   trunk/kfreebsd-8/debian/patches/915_ip6.v6only.diff
   trunk/kfreebsd-8/debian/patches/916_ip6.accept_rtadv.diff
Modified:
   trunk/kfreebsd-8/debian/changelog
   trunk/kfreebsd-8/debian/patches/series
Log:
  * Default to netinet6.ip6.v6only=0 and netinet6.ip6.accept_rtadv=1
    to match the Linux kernel defaults.



Modified: trunk/kfreebsd-8/debian/changelog
===================================================================
--- trunk/kfreebsd-8/debian/changelog	2010-06-18 06:23:13 UTC (rev 3047)
+++ trunk/kfreebsd-8/debian/changelog	2010-06-23 20:35:24 UTC (rev 3048)
@@ -7,6 +7,14 @@
 
  -- Aurelien Jarno <aurel32 at debian.org>  Wed, 09 Jun 2010 14:31:53 +0200
 
+kfreebsd-8 (8.0-9) unstable; urgency=low
+
+  [ Aurelien Jarno ]
+  * Default to netinet6.ip6.v6only=0 and netinet6.ip6.accept_rtadv=1
+    to match the Linux kernel defaults.
+
+ -- Aurelien Jarno <aurel32 at debian.org>  Wed, 23 Jun 2010 21:31:54 +0200
+
 kfreebsd-8 (8.0-8) unstable; urgency=low
 
   [ Aurelien Jarno ]

Added: trunk/kfreebsd-8/debian/patches/915_ip6.v6only.diff
===================================================================
--- trunk/kfreebsd-8/debian/patches/915_ip6.v6only.diff	                        (rev 0)
+++ trunk/kfreebsd-8/debian/patches/915_ip6.v6only.diff	2010-06-23 20:35:24 UTC (rev 3048)
@@ -0,0 +1,11 @@
+--- a/sys/netinet6/ip6_input.c
++++ b/sys/netinet6/ip6_input.c
+@@ -205,7 +205,7 @@
+ 	V_ip6_rr_prune = 5;	 /* router renumbering prefix
+                                   * walk list every 5 sec. */
+ 	V_ip6_mcast_pmtu = 0;	 /* enable pMTU discovery for multicast? */
+-	V_ip6_v6only = 1;
++	V_ip6_v6only = 0;
+ 	V_ip6_keepfaith = 0;
+ 	V_ip6_log_time = (time_t)0L;
+ #ifdef IPSTEALTH

Added: trunk/kfreebsd-8/debian/patches/916_ip6.accept_rtadv.diff
===================================================================
--- trunk/kfreebsd-8/debian/patches/916_ip6.accept_rtadv.diff	                        (rev 0)
+++ trunk/kfreebsd-8/debian/patches/916_ip6.accept_rtadv.diff	2010-06-23 20:35:24 UTC (rev 3048)
@@ -0,0 +1,11 @@
+--- a/sys/netinet6/ip6_input.c
++++ b/sys/netinet6/ip6_input.c
+@@ -196,7 +196,7 @@
+ 	V_ip6_sendredirects = IPV6_SENDREDIRECTS;
+ 	V_ip6_defhlim = IPV6_DEFHLIM;
+ 	V_ip6_defmcasthlim = IPV6_DEFAULT_MULTICAST_HOPS;
+-	V_ip6_accept_rtadv = 0;	 /* "IPV6FORWARDING ? 0 : 1" is dangerous */
++	V_ip6_accept_rtadv = 1;	 /* "IPV6FORWARDING ? 0 : 1" is dangerous */
+ 	V_ip6_log_interval = 5;
+ 	V_ip6_hdrnestlimit = 15; /* How many header options will we process? */
+ 	V_ip6_dad_count = 1;	 /* DupAddrDetectionTransmits */

Modified: trunk/kfreebsd-8/debian/patches/series
===================================================================
--- trunk/kfreebsd-8/debian/patches/series	2010-06-18 06:23:13 UTC (rev 3047)
+++ trunk/kfreebsd-8/debian/patches/series	2010-06-23 20:35:24 UTC (rev 3048)
@@ -20,5 +20,7 @@
 912_binutils.diff
 913_uudecode.diff
 914_psm.diff
+915_ip6.v6only.diff
+916_ip6.accept_rtadv.diff
 950_no_stack_protector.diff
 999_config.diff




More information about the Glibc-bsd-commits mailing list