http://www.perlmonks.org?node_id=1050172


in reply to Re^4: Net::Ping output
in thread Net::Ping output

RTT is stored into $duration; if a packet was received, $ret is true. Are you aware that you are using a programming language and can make the computer do things?
my $p = Net::Ping->new(); $p->hires(); my $received = 0; for (1..4) { # 4 is the amount of packets transmitted my ($ret, $duration, $ip) = $p->ping($host, 5.5); $received++ if $ret; printf "Your RTT is %.2f ms\n", $duration * 1000; } printf "Received %i packets\n", $received;
Throw in a sleep 1; there somewhere if you want.

Replies are listed 'Best First'.
Re^6: Net::Ping output
by gaurav (Sexton) on Aug 20, 2013 at 14:32 UTC

    Ok , then how it will tell that its minimum or maximum RTT

      The same way you would do it in real life: Compare it to a previously stored minimum and maximum.
Re^6: Net::Ping output
by Anonymous Monk on Aug 22, 2013 at 06:43 UTC
    Are you aware that you are using a programming language and can make the computer do things?

    That is by far the most sarcastic sentence I've read in ages! roflmfao!

    (apologies to gaurav)