fiddle a bit more on compatibilty
[spider.git] / perl / Msg.pm
index 5593e937b0323218bbc89bbcfe66a086f266ef41..30519a0764b9c0ddec9dcc7330277cb68d600986 100644 (file)
@@ -119,14 +119,12 @@ sub blocking
        return unless $blocking_supported;
 
        # Make the handle stop blocking, the Windows way.
-       if ($^O eq 'MSWin32') { 
-        my $set_it = $_[1];
-               
+       if ($main::iswin) { 
         # 126 is FIONBIO (some docs say 0x7F << 16)
         ioctl( $_[0],
                0x80000000 | (4 << 16) | (ord('f') << 8) | 126,
-               $set_it
-             ) or confess "Can't set the handle non-blocking: $!";
+               "$_[1]"
+             );
        }
        
        my $flags = fcntl ($_[0], F_GETFL, 0);
@@ -375,7 +373,14 @@ sub new_server {
        return $self;
 }
 
-use Socket qw(IPPROTO_TCP TCP_NODELAY);
+my $oldw = $^W;
+$^W = 0;
+eval "use Socket qw(IPPROTO_TCP TCP_NODELAY)";
+$^W = $oldw;
+if ($@ && !$main::inwin) {
+       sub IPPROTO_TCP {6;}
+       sub TCP_NODELAY {1;};
+}
 
 sub nolinger
 {
@@ -390,7 +395,7 @@ sub nolinger
 
        setsockopt($conn->{sock}, SOL_SOCKET, SO_LINGER, pack("ll", 0, 0)) or confess "setsockopt linger: $!";
        setsockopt($conn->{sock}, SOL_SOCKET, SO_KEEPALIVE, 1) or confess "setsockopt keepalive: $!";
-       setsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY, 1) or confess "setsockopt: $!";
+       setsockopt($conn->{sock}, IPPROTO_TCP, TCP_NODELAY, 1) or confess "setsockopt: $!" unless $main::iswin;
        $conn->{sock}->autoflush(0);
        
        if (isdbg('sock')) {