Kconfig 628 B

1234567891011121314151617181920212223
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig 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. Connector support can also be built as a module. If so, the module
  9. will be called cn.
  10. if CONNECTOR
  11. config PROC_EVENTS
  12. bool "Report process events to userspace"
  13. depends on CONNECTOR=y
  14. default y
  15. help
  16. Provide a connector that reports process events to userspace. Send
  17. events such as fork, exec, id change (uid, gid, suid, etc), and exit.
  18. endif # CONNECTOR