2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2005-07-12 12:13:56 +08:00
|
|
|
#
|
|
|
|
# Unix Domain Sockets
|
|
|
|
#
|
|
|
|
|
|
|
|
config UNIX
|
2023-06-09 04:26:28 +08:00
|
|
|
bool "Unix domain sockets"
|
2020-06-14 00:50:22 +08:00
|
|
|
help
|
2005-07-12 12:13:56 +08:00
|
|
|
If you say Y here, you will include support for Unix domain sockets;
|
|
|
|
sockets are the standard Unix mechanism for establishing and
|
|
|
|
accessing network connections. Many commonly used programs such as
|
|
|
|
the X Window system and syslog use these sockets even if your
|
|
|
|
machine is not connected to any network. Unless you are working on
|
|
|
|
an embedded system or something similar, you therefore definitely
|
|
|
|
want to say Y here.
|
|
|
|
|
|
|
|
Say Y unless you know what you are doing.
|
|
|
|
|
2019-02-09 00:01:44 +08:00
|
|
|
config UNIX_SCM
|
|
|
|
bool
|
|
|
|
depends on UNIX
|
|
|
|
default y
|
|
|
|
|
2021-08-01 15:57:07 +08:00
|
|
|
config AF_UNIX_OOB
|
|
|
|
bool
|
|
|
|
depends on UNIX
|
|
|
|
default y
|
|
|
|
|
2011-12-15 10:46:50 +08:00
|
|
|
config UNIX_DIAG
|
|
|
|
tristate "UNIX: socket monitoring interface"
|
|
|
|
depends on UNIX
|
2012-01-08 04:13:06 +08:00
|
|
|
default n
|
2020-06-14 00:50:22 +08:00
|
|
|
help
|
2011-12-15 10:46:50 +08:00
|
|
|
Support for UNIX socket monitoring interface used by the ss tool.
|
|
|
|
If unsure, say Y.
|