mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Fix: min RTO delay is 200 ms , not 1 second
This commit is contained in:
parent
6f2daf28d8
commit
c338955a09
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@
|
|||
#define MAX_RTO_BACKOFFS 10
|
||||
#define DEFAULT_RETX_DELAY 500000 /* Microseconds */
|
||||
#define MAX_RTO_DELAY 60000000 /* Microseconds */
|
||||
#define MIN_RTO_DELAY 1000000 /* Microseconds */
|
||||
#define MIN_RTO_DELAY 200000 /* Microseconds */
|
||||
#define N_NACKS_BEFORE_RETX 3
|
||||
|
||||
#define CGP(ctl) ((struct cong_ctl *) &(ctl)->sc_cong_u)
|
||||
|
|
Loading…
Reference in a new issue