]> granicus.if.org Git - curl/commitdiff
Modified the VALID_SOCK() macro to become VERIFY_SOCK() instead. It is slighly
authorDaniel Stenberg <daniel@haxx.se>
Mon, 21 Mar 2005 22:34:07 +0000 (22:34 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 21 Mar 2005 22:34:07 +0000 (22:34 +0000)
more involved, but should hopefully not generate any compiler warnings on
win32 systems (that can't check the socket based on the numeric).

lib/select.c

index 5bd8ea466d0986dfc0ddddf3e517d6d88c16f5c5..7b55138df9d5bd50ec446f76996a4eb23bf37a1b 100644 (file)
 #include "select.h"
 
 #ifdef WIN32
-#define VALID_SOCK(s) (1)  /* Win-sockets are not in range [0..FD_SETSIZE> */
+#define VERIFY_SOCK(x)  /* Win-sockets are not in range [0..FD_SETSIZE> */
 #else
 #define VALID_SOCK(s) (((s) >= 0) && ((s) < FD_SETSIZE))
+#define VERIFY_SOCK(x) do { \
+  if(!VALID_SOCK(x)) { \
+    errno = EINVAL; \
+    return -1; \
+  } \
+} while(0)
 #endif
 
 /*
@@ -129,10 +135,7 @@ int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms)
 
   FD_ZERO(&fds_read);
   if (readfd != CURL_SOCKET_BAD) {
-    if (!VALID_SOCK(readfd)) {
-      errno = EINVAL;
-      return -1;
-    }
+    VERIFY_SOCK(readfd);
     FD_SET(readfd, &fds_read);
     FD_SET(readfd, &fds_err);
     maxfd = readfd;
@@ -140,13 +143,10 @@ int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms)
 
   FD_ZERO(&fds_write);
   if (writefd != CURL_SOCKET_BAD) {
-    if (!VALID_SOCK(writefd)) {
-      errno = EINVAL;
-      return -1;
-    }
+    VERIFY_SOCK(writefd);
     FD_SET(writefd, &fds_write);
     FD_SET(writefd, &fds_err);
-    if (writefd > maxfd)
+    if (writefd > maxfd)s
       maxfd = writefd;
   }