]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Replace use of FIONBIO with POSIX-approved O_NONBLOCK (set using fcntl()).
authorBen Harris <bjh21@bjh21.me.uk>
Wed, 16 Apr 2003 23:58:59 +0000 (23:58 +0000)
committerBen Harris <bjh21@bjh21.me.uk>
Wed, 16 Apr 2003 23:58:59 +0000 (23:58 +0000)
This should save us having to worry about different OSs' defining it in
different headers.

[originally from svn r3126]

unix/uxnet.c

index f4731fd00938369edcdaa4533f58d2b77644a41e..8ae0c2f6c27e273c2ec2e9fef4534ba0d9a8fb0d 100644 (file)
@@ -383,6 +383,7 @@ Socket sk_new(SockAddr addr, int port, int privport, int oobinline,
     int err;
     Actual_Socket ret;
     short localport;
+    int fl;
 
     /*
      * Create Socket structure.
@@ -492,10 +493,10 @@ Socket sk_new(SockAddr addr, int port, int privport, int oobinline,
     a.sin_addr.s_addr = htonl(addr->address);
     a.sin_port = htons((short) port);
 #endif
-    {
-       int i = 1;
-       ioctl(s, FIONBIO, &i);
-    }
+
+    fl = fcntl(s, F_GETFL);
+    if (fl != -1)
+       fcntl(s, F_SETFL, fl | O_NONBLOCK);
 
     if ((
 #ifdef IPV6