in reply to Non-blocking socket win32 not work with IO::Socket::SSL

Try IO-Socket-SSL-1.13_5
  • Comment on Re: Non-blocking socket win32 not work with IO::Socket::SSL

Replies are listed 'Best First'.
Re^2: Non-blocking socket win32 not work with IO::Socket::SSL
by Viperii (Initiate) on Mar 28, 2008 at 13:18 UTC
    With Perl 5.10 and IO-Socket-SSL 1.13,
    C:\Documents and Settings\Administrator>perl -MIO::Socket::SSL -e "pri +nt $IO::Socket::SSL::VERSION" 1.13 C:\Documents and Settings\Administrator>perl -v This is perl, v5.10.0 built for MSWin32-x86-multi-thread
    I can use blocking(0) directly:
    #ioctl($socket, 0x8004667e, pack("I", 1)); $socket->blocking(0);
    but "print <$socket>" output garbled characters, and HTTPS server got no request.