From bace144572068633bc114ecaea44d4d59c9b4859 Mon Sep 17 00:00:00 2001 From: jesper Date: Thu, 31 May 2001 21:57:53 +0000 Subject: Change the default value of net.inet6.ip6.maxfragpackets from 200 to NMBCLUSTERS/4 to match the IPv4 case. MFC after: 1 week --- sys/netinet6/in6_proto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netinet6') 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 */ -- cgit v1.1