diff options
author | hiren <hiren@FreeBSD.org> | 2016-01-28 21:30:49 +0000 |
---|---|---|
committer | hiren <hiren@FreeBSD.org> | 2016-01-28 21:30:49 +0000 |
commit | 07d36c1f7c56a074d717e2d90c58cc69397847df (patch) | |
tree | 0929ccb75fbbc1259a9fae616ca387c5842eaaac /sys/netinet/tcp_output.c | |
parent | 85e080cffe32ec9cd2b5b5c9c4f9f8e9b41d4fb9 (diff) | |
download | FreeBSD-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_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 2ca0fb5..4c4a605 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1608,7 +1608,7 @@ tcp_setpersist(struct tcpcb *tp) * Start/restart persistance timer. */ TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift], - TCPTV_PERSMIN, TCPTV_PERSMAX); + tcp_persmin, tcp_persmax); tcp_timer_activate(tp, TT_PERSIST, tt); if (tp->t_rxtshift < TCP_MAXRXTSHIFT) tp->t_rxtshift++; |