diff options
author | Michael Brown | 2014-10-23 17:30:58 +0200 |
---|---|---|
committer | Michael Brown | 2014-10-23 17:39:42 +0200 |
commit | 1c34ca70d199ceee9d663986e377b7f74c826d0c (patch) | |
tree | 31fd9def4bbf41ed099b33d3d86bb03134a2a41f /src/usr | |
parent | [ping] Report timed-out pings via the callback function (diff) | |
download | ipxe-1c34ca70d199ceee9d663986e377b7f74c826d0c.tar.gz ipxe-1c34ca70d199ceee9d663986e377b7f74c826d0c.tar.xz ipxe-1c34ca70d199ceee9d663986e377b7f74c826d0c.zip |
[ping] Allow termination after a specified number of packets
Add the "-c <count>" option to the "ping" command, allowing for
automatic termination after a specified number of packets.
When a number of packets is specified:
- if a serious error (i.e. length mismatch or content mismatch)
occurs, then the ping will be immediately terminated with the relevant
status code;
- if at least one response is received successfully, and all errors
are non-serious (i.e. timeouts or out-of-sequence responses), then
the ping will be terminated after the final response (or timeout)
with a success status;
- if no responses are received successfully, then the ping will be
terminated after the final timeout with ETIMEDOUT.
If no number of packets is specified, then the ping will continue
until manually interrupted.
Originally-implemented-by: Cedric Levasseur <cyr-ius@ipocus.net>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/pingmgmt.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/usr/pingmgmt.c b/src/usr/pingmgmt.c index cf6a5111..f8366f26 100644 --- a/src/usr/pingmgmt.c +++ b/src/usr/pingmgmt.c @@ -58,14 +58,16 @@ static void ping_callback ( struct sockaddr *peer, unsigned int sequence, * @v hostname Hostname * @v timeout Timeout between pings, in ticks * @v len Payload length + * @v count Number of packets to send (or zero for no limit) * @ret rc Return status code */ -int ping ( const char *hostname, unsigned long timeout, size_t len ) { +int ping ( const char *hostname, unsigned long timeout, size_t len, + unsigned int count ) { int rc; /* Create pinger */ - if ( ( rc = create_pinger ( &monojob, hostname, timeout, - len, ping_callback ) ) != 0 ) { + if ( ( rc = create_pinger ( &monojob, hostname, timeout, len, + count, ping_callback ) ) != 0 ) { printf ( "Could not start ping: %s\n", strerror ( rc ) ); return rc; } |