mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Define the delayed ACK timeout value directly as hz/10 instead of
obfuscating it by going through PR_FASTHZ. No functional change. MFC after: 2 weeks
This commit is contained in:
parent
fdd1b7f52a
commit
8d045dbdf3
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@
|
|||
|
||||
#define TCP_MAXRXTSHIFT 12 /* maximum retransmits */
|
||||
|
||||
#define TCPTV_DELACK (hz / PR_FASTHZ / 2) /* 100ms timeout */
|
||||
#define TCPTV_DELACK ( hz/10 ) /* 100ms timeout */
|
||||
|
||||
#ifdef TCPTIMERS
|
||||
static const char *tcptimers[] =
|
||||
|
|
|
|||
Loading…
Reference in a new issue