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
|
|
|
|
|
2022-02-06 20:37:16 +08:00
|
|
|
config NET_LOCAL_VFS_PATH
|
2021-02-05 12:29:26 +08:00
|
|
|
string "Path prefix to Unix domain sockets"
|
2022-12-30 14:37:24 +08:00
|
|
|
default "/var/run"
|
2021-02-05 12:29:26 +08:00
|
|
|
---help---
|
|
|
|
The path prefix to where Unix domain sockets will exist in the VFS namespace.
|
|
|
|
|
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
|
|
|
|
|
2021-09-15 23:22:18 +08:00
|
|
|
config NET_LOCAL_SCM
|
|
|
|
bool "Unix domain socket control message"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable support for Unix domain socket control message
|
|
|
|
|
2015-01-25 04:03:32 +08:00
|
|
|
endif # NET_LOCAL
|
|
|
|
|
|
|
|
endmenu # Unix Domain Sockets
|