blob: a23a5cca97532c18553b6e92c1b35a61bf387756 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Sam Ravnborg6a2e9b72005-07-11 21:13:56 -07002#
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
Jens Axboef4e65872019-02-08 09:01:44 -070023config UNIX_SCM
24 bool
25 depends on UNIX
26 default y
27
Pavel Emelyanov5d531aa2011-12-15 02:46:50 +000028config UNIX_DIAG
29 tristate "UNIX: socket monitoring interface"
30 depends on UNIX
David S. Miller6d62a662012-01-07 12:13:06 -080031 default n
Pavel Emelyanov5d531aa2011-12-15 02:46:50 +000032 ---help---
33 Support for UNIX socket monitoring interface used by the ss tool.
34 If unsure, say Y.