my $p = Net::Async::Ping->new;
my $loop = IO::Async::Loop->new;
my $future = $p->ping($loop, 'myrealbox.com');
$future->on_done(sub {
say "good job the host is running!"
});
$future->on_fail(sub {
say "the host is down!!!";
});
DESCRIPTION
This module's goal is to eventually be able to test remote hosts on a
network with a number of different socket types and protocols.
Currently it only supports TCP, but UDP, ICMP, and Syn are planned. If
you need one of those feel free to work up a patch.
This module was originally forked off of Net::Ping, so it shares some
of it's interface, but only where it makes sense.
All arguments to new are optional, but if you want to provide one in
the middle you must provide all the ones to the left of it. The default
(and currently only) protocol is tcp. The default timeout is 5 seconds.
bytes does not apply to tcp. device is what host to bind the socket to,
ie what to ping from. Neither tos nor ttl apply to tcp currently.
All of the above arguments are optional. Service check, which is off by
default, will cause ping to fail if the host refuses connection to the
selected port (7 by default.) Bind is the same as device from before.
=method ping
my $future = $p->ping($loop, $host, $timeout);
Returns a Future representing the ping. loop should be an
IO::Async::Loop, host is the host, and timeout is optional and defaults
to the default set above.
The future will always terminate with the hi resolution time it took to
check for liveness. The success or failure is checked by introspecting
the future itself.
POD ERRORS
Hey! The above document had some coding errors, which are explained
below: