Subject: | Net::DNS::Select on win32 |
On win32, with activestate perl 5.8, the Net::DNS::Select could
return a IO::Select object (as under UNIX) instead of doing a simple
list management, the IO::Select is running OK on my systems.
Best regards, many thanks
proposed changes :
package Net::DNS::Select;
sub new {
my ($class, @socks) = @_;
return IO::Select->new(@socks);
}
or simply use direct a IO::Select object
---------------------------------------------------
perl version :
This is perl, v5.8.0 built for MSWin32-x86-multi-thread
(with 1 registered patch, see perl -V for more detail)
Copyright 1987-2002, Larry Wall
Binary build 806 provided by ActiveState Corp. http://www.ActiveState.com
Built 00:45:44 Mar 31 2003
----------------------------------