summaryrefslogtreecommitdiff
path: root/nuttx/net/icmp/Kconfig
blob: 872fa48c0f30ad76255e46f00fdae7e587314350 (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
29
30
31
32
33
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if NET_IPv4
menu "ICMP Networking Support"

config NET_ICMP
	bool "Enable ICMP networking"
	default n
	---help---
		Enable minimal ICMP support. Includes built-in support
		for sending replies to received ECHO (ping) requests.

if NET_ICMP

config NET_ICMP_PING
	bool "ICMP ping interfaces"
	default n
	---help---
		Provide interfaces to support application level support for
		for sending ECHO (ping) requests and associating ECHO replies.

config NET_PINGADDRCONF
	bool "Ping address configuration"
	default n
	---help---
		Use "ping" packet for setting IP address

endif # NET_ICMP
endmenu # ICMP Networking Support
endif # NET_IPv4