git: a388086b44ec - stable/14 - tcp: use 0 as the value being ignored
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 05 Sep 2025 06:43:33 UTC
The branch stable/14 has been updated by tuexen: URL: https://cgit.FreeBSD.org/src/commit/?id=a388086b44ec5289d65e5050629a8a0b0a31422f commit a388086b44ec5289d65e5050629a8a0b0a31422f Author: Michael Tuexen <tuexen@FreeBSD.org> AuthorDate: 2025-06-26 17:23:56 +0000 Commit: Michael Tuexen <tuexen@FreeBSD.org> CommitDate: 2025-09-05 06:42:56 +0000 tcp: use 0 as the value being ignored No functional change intended. Sponsored by: Netflix, Inc. (cherry picked from commit 36ba7339d4df0803f8e0655e2ba8d174d4ccec38) --- sys/netinet/tcp_timewait.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/tcp_timewait.c b/sys/netinet/tcp_timewait.c index 0a58bf506a26..006f325d6d0e 100644 --- a/sys/netinet/tcp_timewait.c +++ b/sys/netinet/tcp_timewait.c @@ -92,7 +92,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"); /*