summaryrefslogtreecommitdiffstats
path: root/sys/netinet6
diff options
context:
space:
mode:
authorjesper <jesper@FreeBSD.org>2001-05-31 21:57:53 +0000
committerjesper <jesper@FreeBSD.org>2001-05-31 21:57:53 +0000
commitbace144572068633bc114ecaea44d4d59c9b4859 (patch)
tree013bcee8f8fe1c8e667d45f93d886d774bc1303f /sys/netinet6
parent70faf8712a430d49fe0453f62b7f8e4f237ec0d7 (diff)
downloadFreeBSD-src-bace144572068633bc114ecaea44d4d59c9b4859.zip
FreeBSD-src-bace144572068633bc114ecaea44d4d59c9b4859.tar.gz
Change the default value of net.inet6.ip6.maxfragpackets from
200 to NMBCLUSTERS/4 to match the IPv4 case. MFC after: 1 week
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/in6_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/in6_proto.c b/sys/netinet6/in6_proto.c
index 87db176..740a5a2 100644
--- a/sys/netinet6/in6_proto.c
+++ b/sys/netinet6/in6_proto.c
@@ -286,7 +286,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_maxfragpackets = 200;
+int ip6_maxfragpackets = NMBCLUSTERS/4;
int ip6_log_interval = 5;
int ip6_hdrnestlimit = 50; /* appropriate? */
int ip6_dad_count = 1; /* DupAddrDetectionTransmits */
OpenPOWER on IntegriCloud