blob: a23a5cca97532c18553b6e92c1b35a61bf387756 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001# SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002#
3# Unix Domain Sockets
4#
5
6config UNIX
7 tristate "Unix domain sockets"
8 ---help---
9 If you say Y here, you will include support for Unix domain sockets;
10 sockets are the standard Unix mechanism for establishing and
11 accessing network connections. Many commonly used programs such as
12 the X Window system and syslog use these sockets even if your
13 machine is not connected to any network. Unless you are working on
14 an embedded system or something similar, you therefore definitely
15 want to say Y here.
16
17 To compile this driver as a module, choose M here: the module will be
18 called unix. Note that several important services won't work
19 correctly if you say M here and then neglect to load the module.
20
21 Say Y unless you know what you are doing.
22
David Brazdil0f672f62019-12-10 10:32:29 +000023config UNIX_SCM
24 bool
25 depends on UNIX
26 default y
27
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000028config UNIX_DIAG
29 tristate "UNIX: socket monitoring interface"
30 depends on UNIX
31 default n
32 ---help---
33 Support for UNIX socket monitoring interface used by the ss tool.
34 If unsure, say Y.