nuttx-apps/netutils/ping/Kconfig
simbit18 c356fe92bc netutils/ping/Kconfig: Fix Kconfig style
Remove spaces from Kconfig file
2023-05-18 00:38:54 +08:00

23 lines
640 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config NETUTILS_PING
bool "ICMP ping support"
default n
depends on NET_ICMP
---help---
Build in support for a IPv4 ping command. This command ping will
send the ICMP ECHO_REQUEST and wait for the ICMP ECHO_RESPONSE from
the remote peer.
config NETUTILS_PING6
bool "ICMPv6 ping support"
default n
depends on NET_ICMPv6
---help---
Build in support for a IPv6 ping command. This command ping will
send the ICMPv6 ECHO_REQUEST and wait for the ICMPv6 ECHO_RESPONSE
from the remote peer.