mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
Merge branch 'feature/make_tcp_rto_configurable_v3.2' into 'release/v3.2'
make TCP rto time configurable (backport v3.2) See merge request espressif/esp-idf!9611
This commit is contained in:
commit
3f35383544
@ -435,6 +435,13 @@ config LWIP_WND_SCALE
|
||||
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 da2740fa8d56b9b9e8a10602f38df1ea4dbd9b74
|
||||
Subproject commit f02243aa5f04f6e453e83ecad4700691b9f919d0
|
@ -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 ----------
|
||||
|
Loading…
x
Reference in New Issue
Block a user