mbethke has asked for the wisdom of the Perl Monks concerning the following question:
I've just extended my Net::CIDR::Lookup module with an IPv6 version and am seeing a lot of failed tests form CPANtesters. Clearly an oversight: I just assumed Socket would nowadays always export unpack_sockaddr_in6 and the like. This needs fixing but there's two things I'm not clear about:
PREREQ_PM => { 'Bit::Vector' => 0, Socket => sub { eval { Socket::unpack_sockaddr_in6("\xa".("\0"x22)."\x01\0\0\ +0\0"); 1; } or do { $@ and return 0; } } },
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to require IPv6 support
by VinsWorldcom (Prior) on Aug 02, 2012 at 11:27 UTC | |
|
Re: How to require IPv6 support
by Anonymous Monk on Aug 01, 2012 at 21:54 UTC | |
by mbethke (Hermit) on Aug 01, 2012 at 22:25 UTC | |
by Anonymous Monk on Aug 01, 2012 at 22:41 UTC |