incubator-nuttx/net/icmp/Kconfig

34 lines
770 B
Plaintext
Raw Normal View History

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
2015-01-15 04:26:50 +08:00
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
2015-01-15 04:26:50 +08:00
endif # NET_IPv4