Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Sam Ravnborg | 6a2e9b7 | 2005-07-11 21:13:56 -0700 | [diff] [blame] | 2 | # |
| 3 | # Unix Domain Sockets |
| 4 | # |
| 5 | |
| 6 | config 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 Axboe | f4e6587 | 2019-02-08 09:01:44 -0700 | [diff] [blame] | 23 | config UNIX_SCM |
| 24 | bool |
| 25 | depends on UNIX |
| 26 | default y |
| 27 | |
Pavel Emelyanov | 5d531aa | 2011-12-15 02:46:50 +0000 | [diff] [blame] | 28 | config UNIX_DIAG |
| 29 | tristate "UNIX: socket monitoring interface" |
| 30 | depends on UNIX |
David S. Miller | 6d62a66 | 2012-01-07 12:13:06 -0800 | [diff] [blame] | 31 | default n |
Pavel Emelyanov | 5d531aa | 2011-12-15 02:46:50 +0000 | [diff] [blame] | 32 | ---help--- |
| 33 | Support for UNIX socket monitoring interface used by the ss tool. |
| 34 | If unsure, say Y. |