37 lines
799 B
Plaintext
37 lines
799 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
menu "Socket Support"
|
|
|
|
config NSOCKET_DESCRIPTORS
|
|
int "Number of socket descriptor"
|
|
default 8
|
|
---help---
|
|
Maximum number of socket descriptors per task/thread.
|
|
|
|
config NET_NACTIVESOCKETS
|
|
int "Max socket operations"
|
|
default 16
|
|
---help---
|
|
Maximum number of concurrent socket operations (recv, send,
|
|
connection monitoring, etc.). Default: 16
|
|
|
|
config NET_SOCKOPTS
|
|
bool "Socket options"
|
|
default n
|
|
---help---
|
|
Enable or disable support for socket options
|
|
|
|
if NET_SOCKOPTS
|
|
|
|
config NET_SOLINGER
|
|
bool "SO_LINGER socket option"
|
|
default n
|
|
---help---
|
|
Enable or disable support for the SO_LINGER socket option.
|
|
|
|
endif # NET_SOCKOPTS
|
|
endmenu # Socket Support
|