sctp: use RTO.Initial of 1 second as specified in RFC 4960bis

This commit is contained in:
Michael Tuexen 2021-04-30 00:45:56 +02:00
parent 9de7354bb8
commit eecdf5220b

View File

@ -596,7 +596,7 @@ __FBSDID("$FreeBSD$");
#define SCTP_RTO_UPPER_BOUND (60000) /* 60 sec in ms */
#define SCTP_RTO_LOWER_BOUND (1000) /* 1 sec is ms */
#define SCTP_RTO_INITIAL (3000) /* 3 sec in ms */
#define SCTP_RTO_INITIAL (1000) /* 1 sec in ms */
#define SCTP_INP_KILL_TIMEOUT 20 /* number of ms to retry kill of inpcb */
#define SCTP_ASOC_KILL_TIMEOUT 10 /* number of ms to retry kill of inpcb */