gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r9400 - libmicrohttpd/src/daemon


From: gnunet
Subject: [GNUnet-SVN] r9400 - libmicrohttpd/src/daemon
Date: Wed, 4 Nov 2009 15:40:15 -0700

Author: durner
Date: 2009-11-04 15:40:15 -0700 (Wed, 04 Nov 2009)
New Revision: 9400

Modified:
   libmicrohttpd/src/daemon/daemon.c
Log:
FD_SETSIZE is not the upper bound for fd numbers on Windows

Modified: libmicrohttpd/src/daemon/daemon.c
===================================================================
--- libmicrohttpd/src/daemon/daemon.c   2009-11-04 21:11:07 UTC (rev 9399)
+++ libmicrohttpd/src/daemon/daemon.c   2009-11-04 22:40:15 UTC (rev 9400)
@@ -607,6 +607,7 @@
         }
       return MHD_NO;
     }
+#ifndef MINGW
   if (s >= FD_SETSIZE)
     {
 #if HAVE_MESSAGES
@@ -618,6 +619,7 @@
       CLOSE (s);
       return MHD_NO;
     }
+#endif
 
 
 #if HAVE_MESSAGES





reply via email to

[Prev in Thread] Current Thread [Next in Thread]