Skip to content

Commit

Permalink
icmp_quotelen was accidentially changes in r336676, undo this.
Browse files Browse the repository at this point in the history
Sponsored by:	DARPA, AFRL
  • Loading branch information
zxombie committed Jul 24, 2018
1 parent a6605d2 commit 5b192cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/netinet/ip_icmp.c
Expand Up @@ -140,7 +140,7 @@ SYSCTL_INT(_net_inet_icmp, OID_AUTO, reply_from_interface, CTLFLAG_VNET | CTLFLA
&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,
Expand Down

0 comments on commit 5b192cd

Please sign in to comment.