mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
tcp: use 0 as the value being ignored
No functional change intended. MFC after: 1 week Sponsored by: Netflix, Inc.
This commit is contained in:
parent
5fb4b091e8
commit
36ba7339d4
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@
|
|||
VNET_DEFINE_STATIC(bool, nolocaltimewait) = true;
|
||||
#define V_nolocaltimewait VNET(nolocaltimewait)
|
||||
SYSCTL_BOOL(_net_inet_tcp, OID_AUTO, nolocaltimewait,
|
||||
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nolocaltimewait), true,
|
||||
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(nolocaltimewait), 0,
|
||||
"Do not create TCP TIME_WAIT state for local connections");
|
||||
|
||||
static u_int
|
||||
|
|
|
|||
Loading…
Reference in a new issue