svn commit: r336677 - head/sys/netinet

Andrew Turner andrew at FreeBSD.org
Tue Jul 24 16:45:02 UTC 2018


Author: andrew
Date: Tue Jul 24 16:45:01 2018
New Revision: 336677
URL: https://svnweb.freebsd.org/changeset/base/336677

Log:
  icmp_quotelen was accidentially changes in r336676, undo this.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/netinet/ip_icmp.c

Modified: head/sys/netinet/ip_icmp.c
==============================================================================
--- head/sys/netinet/ip_icmp.c	Tue Jul 24 16:35:52 2018	(r336676)
+++ head/sys/netinet/ip_icmp.c	Tue Jul 24 16:45:01 2018	(r336677)
@@ -140,7 +140,7 @@ SYSCTL_INT(_net_inet_icmp, OID_AUTO, reply_from_interf
 	&VNET_NAME(icmp_rfi), 0,
 	"ICMP reply from incoming interface for non-local packets");
 /* Router requirements RFC 1812 section 4.3.2.3 requires 576 - 28. */
-VNET_DEFINE_STATIC(int, icmp_quotelen) = 8;
+VNET_DEFINE_STATIC(int, icmp_quotelen) = 548;
 #define	V_icmp_quotelen			VNET(icmp_quotelen)
 SYSCTL_INT(_net_inet_icmp, OID_AUTO, quotelen, CTLFLAG_VNET | CTLFLAG_RW,
 	&VNET_NAME(icmp_quotelen), 0,


More information about the svn-src-head mailing list