Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Jul 2018 16:45:01 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r336677 - head/sys/netinet
Message-ID:  <201807241645.w6OGj1UK039486@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807241645.w6OGj1UK039486>