Fix: min RTO delay is 200 ms , not 1 second

This commit is contained in:
Dmitri Tikhonov 2020-11-17 11:11:46 -05:00
parent 6f2daf28d8
commit c338955a09
1 changed files with 1 additions and 1 deletions

View File

@ -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)