diff options
author | 2024-12-18 15:33:34 +0100 | |
---|---|---|
committer | 2024-12-19 19:16:15 -0800 | |
commit | 5155cbcdbf03f207095f9a3794942a25aa7e5f58 (patch) | |
tree | 7060c5fd972c6dd888559b3700cda0958c94abc1 /net/unix | |
parent | selftests: net: remove redundant ncdevmem print (diff) | |
download | wireguard-linux-5155cbcdbf03f207095f9a3794942a25aa7e5f58.tar.xz wireguard-linux-5155cbcdbf03f207095f9a3794942a25aa7e5f58.zip |
af_unix: Add a prompt to CONFIG_AF_UNIX_OOB
This makes it possible to disable the MSG_OOB support in .config.
Signed-off-by: Florent Revest <revest@chromium.org>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Link: https://patch.msgid.link/20241218143334.1507465-1-revest@chromium.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/unix')
-rw-r--r-- | net/unix/Kconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/unix/Kconfig b/net/unix/Kconfig index 8b5d04210d7c..6f1783c1659b 100644 --- a/net/unix/Kconfig +++ b/net/unix/Kconfig @@ -17,9 +17,11 @@ config UNIX Say Y unless you know what you are doing. config AF_UNIX_OOB - bool + bool "UNIX: out-of-bound messages" depends on UNIX default y + help + Support for MSG_OOB in UNIX domain sockets. If unsure, say Y. config UNIX_DIAG tristate "UNIX: socket monitoring interface" |