| # |
| # 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. |