incubator-nuttx/net/icmpv6/Kconfig

29 lines
650 B
Plaintext
Raw Normal View History

2015-01-15 04:26:50 +08:00
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
if NET_IPv6
menu "ICMPv6 Networking Support"
config NET_ICMPv6
bool "Enable ICMPv6 networking"
default n
depends on NET
---help---
Enable minimal ICMPv6 support. Includes built-in support
for sending replies to received ECHO (ping) requests.
if NET_ICMPv6
config NET_ICMPv6_PING
bool "ICMPv6 ping interfaces"
default n
---help---
Provide interfaces to support application level support for
for sending ECHO (ping) requests and associating ECHO replies.
2015-01-15 04:26:50 +08:00
endif # NET_ICMPv6
endmenu # ICMPv6 Networking Support
endif # NET_IPv6