Change the delayed ack time from 200ms to 100ms.
This results in closer behavior to earlier versions, where the fixed 200ms timer actually resulted in a delay anywhere from 1..200ms, with the average delay being 100ms. Pointed out by: dg
This commit is contained in:
parent
5a97c96dd1
commit
0305d09280
@ -99,7 +99,7 @@
|
||||
|
||||
#define TCP_MAXRXTSHIFT 12 /* maximum retransmits */
|
||||
|
||||
#define TCPTV_DELACK (hz / PR_FASTHZ) /* 200ms timeout */
|
||||
#define TCPTV_DELACK (hz / PR_FASTHZ / 2) /* 100ms timeout */
|
||||
|
||||
#ifdef TCPTIMERS
|
||||
static char *tcptimers[] =
|
||||
|
Loading…
Reference in New Issue
Block a user