Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. if NET_ICMPv6
  6. menuconfig NET_MLD
  7. bool "Multicast Listener Discovery (MLD)"
  8. default n
  9. select NET_MCASTGROUP
  10. select NETDEV_IFINDEX
  11. ---help---
  12. Enable Multicast Listener Discovery (MLD) support.
  13. if NET_MLD
  14. config NET_MLD_ROUTER
  15. bool # "MLD Router support"
  16. default n
  17. depends on EXPERIMENTAL
  18. ---help---
  19. Enables a few hooks that will be needed for router support in the
  20. future. Not yet ready for prime time.
  21. config NET_MLD_DEBUG
  22. bool "Force MLD debug"
  23. default n
  24. depends on DEBUG_ERROR
  25. ---help---
  26. Normally, MLD debug output is controlled by CONFIG_DEBUG_NET_*.
  27. This option will force debug output from MLD files even if network
  28. debug is not enabled. This feature does still depend on global
  29. debug output CONFIG_DEBUG_INFO, CONFIG_DEBUG_WARN, and
  30. CONFIG_DEBUG_ERROR.
  31. config NET_MLD_TXDUMP
  32. bool "Enable TX Packet Dump"
  33. default n
  34. ---help---
  35. Dump the content of all outgoing packets.
  36. endif # NET_MLD
  37. endif # NET_ICMPv6