Subject: | Output of ping on Windows |
Hi,
nice module (I ran in the trouble of pinging from perl on Windows being no admin).
The typical output of the ping command on Windows NT4 / W2K is:
c:\>ping www.perl.com
Pinging www.perl.com [208.201.239.8] with 32 bytes of data:
Reply from 208.201.239.8: bytes=32 time=187ms TTL=241
So IMHO line 69 of External.pm should be changed to something like:
- return 1 if $result =~ /time?\d*ms/;
+ return 1 if $result =~ /time.?\d+ms/;