summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorhiren <hiren@FreeBSD.org>2016-01-28 21:30:49 +0000
committerhiren <hiren@FreeBSD.org>2016-01-28 21:30:49 +0000
commit07d36c1f7c56a074d717e2d90c58cc69397847df (patch)
tree0929ccb75fbbc1259a9fae616ca387c5842eaaac /sys/netinet/tcp_subr.c
parent85e080cffe32ec9cd2b5b5c9c4f9f8e9b41d4fb9 (diff)
downloadFreeBSD-src-07d36c1f7c56a074d717e2d90c58cc69397847df.zip
FreeBSD-src-07d36c1f7c56a074d717e2d90c58cc69397847df.tar.gz
MFC r294840
Persist timers TCPTV_PERSMIN and TCPTV_PERSMAX are hardcoded with 5 seconds and 60 seconds, respectively. Turn them into sysctls that can be tuned live. The default values of 5 seconds and 60 seconds have been retained.
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r--sys/netinet/tcp_subr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index c0add82..9fe6eac 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -400,6 +400,8 @@ tcp_init(void)
tcp_rexmit_min = TCPTV_MIN;
if (tcp_rexmit_min < 1)
tcp_rexmit_min = 1;
+ tcp_persmin = TCPTV_PERSMIN;
+ tcp_persmax = TCPTV_PERSMAX;
tcp_rexmit_slop = TCPTV_CPU_VAR;
tcp_finwait2_timeout = TCPTV_FINWAIT2_TIMEOUT;
tcp_tcbhashsize = hashsize;
OpenPOWER on IntegriCloud