2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2005-07-12 04:13:56 +00:00
|
|
|
#
|
|
|
|
# Unix Domain Sockets
|
|
|
|
#
|
|
|
|
|
|
|
|
config UNIX
|
2023-06-08 20:26:28 +00:00
|
|
|
bool "Unix domain sockets"
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2005-07-12 04:13:56 +00: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-08 16:01:44 +00:00
|
|
|
config UNIX_SCM
|
|
|
|
bool
|
|
|
|
depends on UNIX
|
|
|
|
default y
|
|
|
|
|
2021-08-01 07:57:07 +00:00
|
|
|
config AF_UNIX_OOB
|
|
|
|
bool
|
|
|
|
depends on UNIX
|
|
|
|
default y
|
|
|
|
|
2011-12-15 02:46:50 +00:00
|
|
|
config UNIX_DIAG
|
|
|
|
tristate "UNIX: socket monitoring interface"
|
|
|
|
depends on UNIX
|
2012-01-07 20:13:06 +00:00
|
|
|
default n
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2011-12-15 02:46:50 +00:00
|
|
|
Support for UNIX socket monitoring interface used by the ss tool.
|
|
|
|
If unsure, say Y.
|