in reply to AnyEvent and strange DNS queries
It tries to find the SRV record for http service on $host. Replace it with the port number:my $handle; $handle = new AnyEvent::Handle connect => [$host => 'http'],
and it will just resolve the host name.connect => [$host => 80],
|
|---|