Kconfig 655 B

12345678910111213141516171819202122232425
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Packet configuration
  4. #
  5. config PACKET
  6. tristate "Packet socket"
  7. help
  8. The Packet protocol is used by applications which communicate
  9. directly with network devices without an intermediate network
  10. protocol implemented in the kernel, e.g. tcpdump. If you want them
  11. to work, choose Y.
  12. To compile this driver as a module, choose M here: the module will
  13. be called af_packet.
  14. If unsure, say Y.
  15. config PACKET_DIAG
  16. tristate "Packet: sockets monitoring interface"
  17. depends on PACKET
  18. default n
  19. help
  20. Support for PF_PACKET sockets monitoring interface used by the ss tool.
  21. If unsure, say Y.