2016-08-17 15:08:22 +00:00
|
|
|
menu "LWIP"
|
|
|
|
|
|
|
|
config LWIP_MAX_SOCKETS
|
2016-10-28 05:35:06 +00:00
|
|
|
int "Max number of open sockets"
|
2016-09-28 05:24:58 +00:00
|
|
|
range 1 16
|
|
|
|
default 4
|
|
|
|
help
|
|
|
|
Sockets take up a certain amount of memory, and allowing fewer
|
|
|
|
sockets to be open at the same time conserves memory. Specify
|
2016-10-28 05:35:06 +00:00
|
|
|
the maximum amount of sockets here. The valid value is from 1
|
|
|
|
to 16.
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-08-24 05:29:06 +00:00
|
|
|
config LWIP_THREAD_LOCAL_STORAGE_INDEX
|
2016-09-28 05:24:58 +00:00
|
|
|
int "Index for thread-local-storage pointer for lwip"
|
|
|
|
default 0
|
|
|
|
help
|
|
|
|
Specify the thread-local-storage-pointer index for lwip
|
|
|
|
use.
|
2016-08-24 05:29:06 +00:00
|
|
|
|
2016-09-20 07:36:55 +00:00
|
|
|
config LWIP_SO_REUSE
|
2016-09-28 05:24:58 +00:00
|
|
|
bool "Enable SO_REUSEADDR option"
|
|
|
|
default 0
|
|
|
|
help
|
|
|
|
Enabling this option allows binding to a port which remains in
|
|
|
|
TIME_WAIT.
|
2016-09-20 07:36:55 +00:00
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
endmenu
|
|
|
|
|
|
|
|
|