[Glibc-bsd-commits] r3049 - in trunk/kfreebsd-7/debian: . patches

Aurelien Jarno aurel32 at alioth.debian.org
Thu Jun 24 07:13:11 UTC 2010


Author: aurel32
Date: 2010-06-24 07:13:04 +0000 (Thu, 24 Jun 2010)
New Revision: 3049

Added:
   trunk/kfreebsd-7/debian/patches/915_ip6.v6only.diff
   trunk/kfreebsd-7/debian/patches/916_ip6.accept_rtadv.diff
Modified:
   trunk/kfreebsd-7/debian/changelog
   trunk/kfreebsd-7/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-7/debian/changelog
===================================================================
--- trunk/kfreebsd-7/debian/changelog	2010-06-23 20:35:24 UTC (rev 3048)
+++ trunk/kfreebsd-7/debian/changelog	2010-06-24 07:13:04 UTC (rev 3049)
@@ -1,3 +1,11 @@
+kfreebsd-7 (7.3-4) 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>  Thu, 24 Jun 2010 00:19:38 +0200
+
 kfreebsd-7 (7.3-3) unstable; urgency=low
 
   [ Aurelien Jarno ]

Added: trunk/kfreebsd-7/debian/patches/915_ip6.v6only.diff
===================================================================
--- trunk/kfreebsd-7/debian/patches/915_ip6.v6only.diff	                        (rev 0)
+++ trunk/kfreebsd-7/debian/patches/915_ip6.v6only.diff	2010-06-24 07:13:04 UTC (rev 3049)
@@ -0,0 +1,11 @@
+--- a/sys/netinet6/in6_proto.c
++++ b/sys/netinet6/in6_proto.c
+@@ -386,7 +386,7 @@
+ int	ip6_rr_prune = 5;	/* router renumbering prefix
+ 				 * walk list every 5 sec. */
+ int	ip6_mcast_pmtu = 0;	/* enable pMTU discovery for multicast? */
+-int	ip6_v6only = 1;
++int	ip6_v6only = 0;
+ 
+ int	ip6_keepfaith = 0;
+ time_t	ip6_log_time = (time_t)0L;

Added: trunk/kfreebsd-7/debian/patches/916_ip6.accept_rtadv.diff
===================================================================
--- trunk/kfreebsd-7/debian/patches/916_ip6.accept_rtadv.diff	                        (rev 0)
+++ trunk/kfreebsd-7/debian/patches/916_ip6.accept_rtadv.diff	2010-06-24 07:13:04 UTC (rev 3049)
@@ -0,0 +1,11 @@
+--- a/sys/netinet6/in6_proto.c
++++ b/sys/netinet6/in6_proto.c
+@@ -374,7 +374,7 @@
+ int	ip6_sendredirects = IPV6_SENDREDIRECTS;
+ int	ip6_defhlim = IPV6_DEFHLIM;
+ int	ip6_defmcasthlim = IPV6_DEFAULT_MULTICAST_HOPS;
+-int	ip6_accept_rtadv = 0;	/* "IPV6FORWARDING ? 0 : 1" is dangerous */
++int	ip6_accept_rtadv = 1;	/* "IPV6FORWARDING ? 0 : 1" is dangerous */
+ int	ip6_maxfragpackets;	/* initialized in frag6.c:frag6_init() */
+ int	ip6_maxfrags;	/* initialized in frag6.c:frag6_init() */
+ int	ip6_log_interval = 5;

Modified: trunk/kfreebsd-7/debian/patches/series
===================================================================
--- trunk/kfreebsd-7/debian/patches/series	2010-06-23 20:35:24 UTC (rev 3048)
+++ trunk/kfreebsd-7/debian/patches/series	2010-06-24 07:13:04 UTC (rev 3049)
@@ -23,4 +23,6 @@
 912_binutils.diff
 913_uudecode.diff
 914_psm.diff
+915_ip6.v6only.diff
+916_ip6.accept_rtadv.diff
 999_config.diff




More information about the Glibc-bsd-commits mailing list