Merge branch 'feature/make_tcp_rto_configurable_v3.3' into 'release/v3.3'

make TCP rto time configurable (backport v3.3)

See merge request espressif/esp-idf!9610
This commit is contained in:
Jiang Jiang Jian 2020-08-10 21:17:45 +08:00
commit b244afc208
3 changed files with 14 additions and 1 deletions

View file

@ -451,6 +451,13 @@ menu "LWIP"
help
Enable this feature to support TCP window scaling.
config LWIP_TCP_RTO_TIME
int "Default TCP rto time"
default 3000
help
Set default TCP rto time for a reasonable initial rto.
In bad network environment, recommend set value of rto time to 1500.
endmenu # TCP
menu "UDP"

@ -1 +1 @@
Subproject commit 453b291c4c0752e05b585a62d32d8bb23e1538d7
Subproject commit f02243aa5f04f6e453e83ecad4700691b9f919d0

View file

@ -376,6 +376,12 @@
#define TCP_RCV_SCALE CONFIG_TCP_RCV_SCALE
#endif
/**
* LWIP_TCP_RTO_TIME: TCP rto time.
* Default is 3 second.
*/
#define LWIP_TCP_RTO_TIME CONFIG_LWIP_TCP_RTO_TIME
/*
----------------------------------
---------- Pbuf options ----------