fdcavalcanti commented on code in PR #17666: URL: https://github.com/apache/nuttx/pull/17666#discussion_r2650977331
########## Documentation/applications/system/ping/index.rst: ########## @@ -1,3 +1,114 @@ ============================ ``ping`` ICMP "ping" command ============================ + +Overview +-------- +The ``ping`` application sends ICMPv4 Echo Request packets to a target host +and reports replies, packet loss, round-trip time (RTT) statistics, and +basic errors. It is useful for verifying IP connectivity and measuring +latency. + +Requirements +------------ +- Networking enabled: ``CONFIG_NET=y`` +- ICMP and raw socket support in the OS +- Build the app: ``CONFIG_SYSTEM_PING=y`` +- Optional DNS resolution: ``CONFIG_LIBC_NETDB`` and ``CONFIG_NETDB_DNSCLIENT`` +- Optional device binding support for ``-I``: ``CONFIG_NET_BINDTODEVICE`` + +Synopsis Review Comment: Never seen Synopsis before. I'm assuming this is the same or similar to syntax? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
