in reply to how to store IPV6 network byte order address returned by inet_pton into an integer array?

my @ints = unpack 'N*', inet_pton(...);
  • Comment on Re: how to store IPV6 network byte order address returned by inet_pton into an integer array?
  • Download Code

Replies are listed 'Best First'.
Re^2: how to store IPV6 network byte order address returned by inet_pton into an integer array?
by Anonymous Monk on Jul 14, 2010 at 07:15 UTC
    thanks a lot......