Subject: | Crashed on Win32 |
On Win32 platform my perl-5.10 crashed on calling $connection-
Show quoted text
>set_blocking( 0 );
I make this fix:
\lib\Net\OSCAR\Connection.pm:366
ioctl($self->{socket},
0x80000000 | (4 << 16) | (ord('f') << 8) | 126,
$blocking
) or warn "Couldn't set Win32 blocking: $!\n";
must be changed to
ioctl($self->{socket},
0x80000000 | (4 << 16) | (ord('f') << 8) | 126,
pack( "L!", $blocking )
) or warn "Couldn't set Win32 blocking: $!\n";