diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-10 02:12:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-06-10 02:12:09 +0000 |
commit | 15d96390cdc9f50119594a52390acfbf47d4f693 (patch) | |
tree | 354fa1935b736b1c5afcf463bdd12cc194608c2f /lib/Net/Ping | |
parent | cba2fd88758e554cd86f91751596696bfd7d3f5f (diff) | |
download | perl-15d96390cdc9f50119594a52390acfbf47d4f693.tar.gz |
Upgrade to Net::Ping 2.19.
p4raw-id: //depot/perl@17155
Diffstat (limited to 'lib/Net/Ping')
-rw-r--r-- | lib/Net/Ping/Changes (renamed from lib/Net/Ping/CHANGES) | 7 | ||||
-rw-r--r-- | lib/Net/Ping/README | 12 |
2 files changed, 18 insertions, 1 deletions
diff --git a/lib/Net/Ping/CHANGES b/lib/Net/Ping/Changes index 0ac95cf4cc..6677b527e0 100644 --- a/lib/Net/Ping/CHANGES +++ b/lib/Net/Ping/Changes @@ -1,6 +1,13 @@ CHANGES ------- +2.19 Jun 03 19:00 2002 + - Add $p->udp_source_verify method to skip source + endpoint verification of udp protocol pings for + those remote destinations with multiple interfaces + that may have the "reverse telnet" bug. + - Moved files to more standard locations. + 2.18 May 06 12:00 2002 - More RPM spec generalizations. diff --git a/lib/Net/Ping/README b/lib/Net/Ping/README index e55e847aa8..b3665cec6e 100644 --- a/lib/Net/Ping/README +++ b/lib/Net/Ping/README @@ -1,7 +1,7 @@ NAME Net::Ping - check a remote host for reachability - $Id: Ping.pm,v 1.34 2002/05/06 17:37:54 rob Exp $ + $Id: Ping.pm,v 1.1 2002/06/04 00:41:52 rob Exp $ SYNOPSIS use Net::Ping; @@ -102,10 +102,20 @@ DESCRIPTION otherwise. The maximum number of data bytes that can be specified is 1024. + $p->source_verify( { 0 | 1 } ); + Allows source endpoint verification to be enabled or disabled. This + is useful for those remote destinations with multiples interfaces + where the response may not originate from the same endpoint that the + original destination endpoint was sent to. + + This is enabled by default. + $p->hires( { 0 | 1 } ); Causes this module to use Time::HiRes module, allowing milliseconds to be returned by subsequent calls to ping(). + This is disabled by default. + $p->bind($local_addr); Sets the source address from which pings will be sent. This must be the address of one of the interfaces on the local host. $local_addr |