24 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2 3menuconfig CONNECTOR4 tristate "Connector - unified userspace <-> kernelspace linker"5 depends on NET6 help7 This is unified userspace <-> kernelspace connector working on top8 of the netlink socket protocol.9 10 Connector support can also be built as a module. If so, the module11 will be called cn.12 13if CONNECTOR14 15config PROC_EVENTS16 bool "Report process events to userspace"17 depends on CONNECTOR=y18 default y19 help20 Provide a connector that reports process events to userspace. Send21 events such as fork, exec, id change (uid, gid, suid, etc), and exit.22 23endif # CONNECTOR24