Loading...
1
2menuconfig CONNECTOR
3 tristate "Connector - unified userspace <-> kernelspace linker"
4 depends on NET
5 ---help---
6 This is unified userspace <-> kernelspace connector working on top
7 of the netlink socket protocol.
8
9 Connector support can also be built as a module. If so, the module
10 will be called cn.
11
12if CONNECTOR
13
14config PROC_EVENTS
15 boolean "Report process events to userspace"
16 depends on CONNECTOR=y
17 default y
18 ---help---
19 Provide a connector that reports process events to userspace. Send
20 events such as fork, exec, id change (uid, gid, suid, etc), and exit.
21
22endif # CONNECTOR
1# SPDX-License-Identifier: GPL-2.0-only
2
3menuconfig CONNECTOR
4 tristate "Connector - unified userspace <-> kernelspace linker"
5 depends on NET
6 help
7 This is unified userspace <-> kernelspace connector working on top
8 of the netlink socket protocol.
9
10 Connector support can also be built as a module. If so, the module
11 will be called cn.
12
13if CONNECTOR
14
15config PROC_EVENTS
16 bool "Report process events to userspace"
17 depends on CONNECTOR=y
18 default y
19 help
20 Provide a connector that reports process events to userspace. Send
21 events such as fork, exec, id change (uid, gid, suid, etc), and exit.
22
23endif # CONNECTOR