Merge branch 'feat/lwip_more_sockets_v5.3' into 'release/v5.3'

change(lwip): bump max sockets in lwip Kconfig (GItHubPR) (v5.3)

See merge request espressif/esp-idf!34151
This commit is contained in:
Jiang Jiang Jian 2024-10-25 21:02:55 +08:00
commit 0deebec285
2 changed files with 8 additions and 3 deletions

View File

@ -135,13 +135,19 @@ menu "LWIP"
config LWIP_MAX_SOCKETS config LWIP_MAX_SOCKETS
int "Max number of open sockets" int "Max number of open sockets"
range 1 16 range 1 253
default 10 default 10
help help
The practical maximum limit is
determined by available heap memory at runtime.
Sockets take up a certain amount of memory, and allowing fewer Sockets take up a certain amount of memory, and allowing fewer
sockets to be open at the same time conserves memory. Specify sockets to be open at the same time conserves memory. Specify
the maximum amount of sockets here. The valid value is from 1 the maximum amount of sockets here. The valid value is from 1
to 16. to 253. If using value above 61, update CMakeLists defining
FD_SETSIZE to the number of sockets used plus the
expected open files (minimum of +3 for stdout, stderr and stdin).
config LWIP_USE_ONLY_LWIP_SELECT config LWIP_USE_ONLY_LWIP_SELECT
bool "Support LWIP socket select() only (DEPRECATED)" bool "Support LWIP socket select() only (DEPRECATED)"

View File

@ -61,7 +61,6 @@ components/json/cJSON/
components/spiffs/include/spiffs_config.h components/spiffs/include/spiffs_config.h
components/unity/unity/src/unity_internals.h components/unity/unity/src/unity_internals.h
components/unity/unity/extras/
components/unity/include/unity_config.h components/unity/include/unity_config.h
components/unity/include/unity_test_runner.h components/unity/include/unity_test_runner.h