mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/modify_TCP_MSS_range_v3.1' into 'release/v3.1'
Change the default value of TCP_MSS (backport v3.1) See merge request espressif/esp-idf!9048
This commit is contained in:
commit
2abf3229dd
@ -295,12 +295,15 @@ config TCP_SYNMAXRTX
|
||||
|
||||
config TCP_MSS
|
||||
int "Maximum Segment Size (MSS)"
|
||||
default 1436
|
||||
range 1220 1436
|
||||
default 1440
|
||||
range 536 1440
|
||||
help
|
||||
Set maximum segment size for TCP transmission.
|
||||
|
||||
Can be set lower to save RAM, the default value 1436 will give best throughput.
|
||||
Can be set lower to save RAM, the default value 1460(ipv4)/1440(ipv6) will give best throughput.
|
||||
IPv4 TCP_MSS Range: 576 <= TCP_MSS <= 1460
|
||||
IPv6 TCP_MSS Range: 1220<= TCP_MSS <= 1440
|
||||
|
||||
|
||||
config TCP_MSL
|
||||
int "Maximum segment lifetime (MSL)"
|
||||
|
Loading…
Reference in New Issue
Block a user