The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::DNS_A - First attempt at asynchronous dns resoloving with gettaddrinfo_a

SYNOPSIS

  use Net::DNS_A;

  Net::DNS_A::lookup("google.com");
  sleep(1);

  my @output = Net::DNS_A::retrieve();
  print("output[0]: $output[0]\n");
  print("output[1]: $output[1]\n");

DESCRIPTION

Net::DNS_A is a first attempt at asynchronous dns resolving with gettaddrinfo_a.

EXPORT

None by default.

AUTHOR

Brian Medley, <bpmedley@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2014 by Brian Medley

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.20.1 or, at your option, any later version of Perl 5 you may have available.