in reply to Re^2: multithreading solution to the below problem
in thread multithreading solution to the below problem

Have you read Net::Ping? It describes how you can ping multiple hosts without even needing threads. Please just read Net::Ping and ask specific questions after you've done so. The relevant example from the Net::Ping documentation is:

# Like tcp protocol, but with many hosts $p = Net::Ping->new("syn"); $p->port_number(getservbyname("http", "tcp")); foreach $host (@host_array) { $p->ping($host); } while (($host,$rtt,$ip) = $p->ack) { print "HOST: $host [$ip] ACKed in $rtt seconds.\n"; }

Replies are listed 'Best First'.
Re^4: multithreading solution to the below problem
by rookie8278 (Initiate) on Jun 25, 2009 at 08:38 UTC
    Thanks Corion