diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2014-02-10 16:54:41 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2014-02-10 16:56:02 +0000 |
commit | 06f844648929e166afcdc5b73f8d9ca537dd742b (patch) | |
tree | 5699c5f9770ee599a3ec48961dfc530d6d858d77 /cpan/IO-Socket-IP/lib | |
parent | 74a30e968bc29076c4d3edc91b28b9d9f624101e (diff) | |
download | perl-06f844648929e166afcdc5b73f8d9ca537dd742b.tar.gz |
Update IO-Socket-IP to CPAN version 0.28
[DELTA]
0.28 2014/02/10 16:17:59
[CHANGES]
* Renamed internal _configure method to _io_socket_ip__configure to
avoid clashes with modules that try to subclass IO::Socket::INET
[BUGFIXES]
* Disable AI_ADDRCONFIG during one-sided 'v6 tests as sometimes it
would otherwise fail
* Skip the SO_BROADCAST test on OSes that fail with EACCES (RT92502)
Diffstat (limited to 'cpan/IO-Socket-IP/lib')
-rw-r--r-- | cpan/IO-Socket-IP/lib/IO/Socket/IP.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cpan/IO-Socket-IP/lib/IO/Socket/IP.pm b/cpan/IO-Socket-IP/lib/IO/Socket/IP.pm index 11ecf3bf4e..44d057f6aa 100644 --- a/cpan/IO-Socket-IP/lib/IO/Socket/IP.pm +++ b/cpan/IO-Socket-IP/lib/IO/Socket/IP.pm @@ -7,7 +7,7 @@ package IO::Socket::IP; # $VERSION needs to be set before use base 'IO::Socket' # - https://rt.cpan.org/Ticket/Display.html?id=92107 BEGIN { - $VERSION = '0.27'; + $VERSION = '0.28'; } use strict; @@ -364,10 +364,11 @@ sub configure } } - $self->_configure( $arg ); + $self->_io_socket_ip__configure( $arg ); } -sub _configure +# Avoid simply calling it _configure, as some subclasses of IO::Socket::INET on CPAN already take that +sub _io_socket_ip__configure { my $self = shift; my ( $arg ) = @_; |