2015-01-25 04:03:32 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2015-01-25 04:03:32 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
menu "Unix Domain Socket Support"
|
2015-02-18 23:34:58 +08:00
|
|
|
depends on NET && !DISABLE_PSEUDOFS_OPERATIONS
|
2015-01-25 04:03:32 +08:00
|
|
|
|
|
|
|
config NET_LOCAL
|
|
|
|
bool "Unix domain (local) sockets"
|
|
|
|
default n
|
2016-07-20 03:40:54 +08:00
|
|
|
select PIPES
|
2015-01-25 04:03:32 +08:00
|
|
|
---help---
|
|
|
|
Enable or disable Unix domain (aka Local) sockets.
|
|
|
|
|
|
|
|
if NET_LOCAL
|
|
|
|
|
2015-01-31 21:58:51 +08:00
|
|
|
config NET_LOCAL_STREAM
|
|
|
|
bool "Unix domain stream sockets"
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Enable support for Unix domain SOCK_STREAM type sockets
|
|
|
|
|
|
|
|
config NET_LOCAL_DGRAM
|
|
|
|
bool "Unix domain datagram sockets"
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Enable support for Unix domain SOCK_DGRAM type sockets
|
|
|
|
|
2015-01-25 04:03:32 +08:00
|
|
|
endif # NET_LOCAL
|
|
|
|
|
|
|
|
endmenu # Unix Domain Sockets
|