2015-01-24 21:03:32 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2015-01-24 21:03:32 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
menu "Unix Domain Socket Support"
|
2015-02-18 16:34:58 +01:00
|
|
|
depends on NET && !DISABLE_PSEUDOFS_OPERATIONS
|
2015-01-24 21:03:32 +01:00
|
|
|
|
|
|
|
config NET_LOCAL
|
|
|
|
bool "Unix domain (local) sockets"
|
|
|
|
default n
|
2016-07-19 21:40:54 +02:00
|
|
|
select PIPES
|
2015-01-24 21:03:32 +01:00
|
|
|
---help---
|
|
|
|
Enable or disable Unix domain (aka Local) sockets.
|
|
|
|
|
|
|
|
if NET_LOCAL
|
|
|
|
|
2022-02-06 13:37:16 +01:00
|
|
|
config NET_LOCAL_VFS_PATH
|
2021-02-05 05:29:26 +01:00
|
|
|
string "Path prefix to Unix domain sockets"
|
|
|
|
default "/var/socket"
|
|
|
|
---help---
|
|
|
|
The path prefix to where Unix domain sockets will exist in the VFS namespace.
|
|
|
|
|
2015-01-31 14:58:51 +01: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 17:22:18 +02:00
|
|
|
config NET_LOCAL_SCM
|
|
|
|
bool "Unix domain socket control message"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable support for Unix domain socket control message
|
|
|
|
|
2015-01-24 21:03:32 +01:00
|
|
|
endif # NET_LOCAL
|
|
|
|
|
|
|
|
endmenu # Unix Domain Sockets
|