I asked about this a while back - see IPv6 Name Resolution.

The solution for me was to use Socket::GetAddrInfo with the following:

use if $] < 5.014, "Socket" => qw(inet_ntoa unpack_sockaddr_in IPPROT +O_TCP AF_INET AF_UNSPEC); use if $] < 5.014, "Socket6"; use if $] < 5.014, "Socket::GetAddrInfo" => qw(getaddrinfo getnameinf +o); use if $] >= 5.014, "Socket" => qw(:addrinfo inet_ntoa inet_ntop unpac +k_sockaddr_in unpack_sockaddr_in6 IPPROTO_TCP AF_INET AF_UNSPEC);

If you want your program to run on both Windows and Linux, good luck. Socket does have IPv6 support on Linux. With Windows, it appears the headers and libraries supplied with Strawberry's C compiler don't have the IPv6 routines (get*info); however, they ARE available on Windows and I've compiled C programs that use them. I'm guessing Strawberry Perl gcc compiler (headers and libraries) need to be updated and the Socket module recompiled as Windows 7 will support it, but not in the current Strawberry distribution (I'm running 5.12.3, but have also tested with 5.14).

UPDATE: See UPDATE section in Re^2: ipv6 support on windows.

In reply to Re: Perl and IPv6 on Windows by VinsWorldcom
in thread Perl and IPv6 on Windows by MalcolmH

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.