mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-22 11:17:19 +00:00
Compensate for decreasing the minimum retransmit timeout.
Reviewed by: jlemon
This commit is contained in:
parent
2611a92c3a
commit
f058535deb
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115824
@ -160,9 +160,9 @@ int tcp_syn_backoff[TCP_MAXRXTSHIFT + 1] =
|
||||
{ 1, 1, 1, 1, 1, 2, 4, 8, 16, 32, 64, 64, 64 };
|
||||
|
||||
int tcp_backoff[TCP_MAXRXTSHIFT + 1] =
|
||||
{ 1, 2, 4, 8, 16, 32, 64, 64, 64, 64, 64, 64, 64 };
|
||||
{ 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 512, 512, 512 };
|
||||
|
||||
static int tcp_totbackoff = 511; /* sum of tcp_backoff[] */
|
||||
static int tcp_totbackoff = 2559; /* sum of tcp_backoff[] */
|
||||
|
||||
/*
|
||||
* TCP timer processing.
|
||||
|
Loading…
Reference in New Issue
Block a user