summaryrefslogtreecommitdiff
path: root/nuttx/net/icmpv6/Kconfig
blob: 89c03c36cf949b228237910b39c2b95de21fbc13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# 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.

endif # NET_ICMPv6
endmenu # ICMPv6 Networking Support
endif # NET_IPv6