aboutsummaryrefslogtreecommitdiff
path: root/src/include/platform.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-06 12:49:06 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-06 12:49:06 +0000
commitf39b3686f461388b6f1f61e2110832d0c7005a2f (patch)
treef6cd7f76b26e67063fe4d07a94632f867da68a89 /src/include/platform.h
parent66ad61315839233a4cc65e98d12e36c3a3c1896e (diff)
downloadgnunet-f39b3686f461388b6f1f61e2110832d0c7005a2f.tar.gz
gnunet-f39b3686f461388b6f1f61e2110832d0c7005a2f.zip
LRN: Fixing Mantis #1974: On W32 winsock2.h defines FD_SETSIZE (if it was not defined before inclusion of the header) to 64, which means that it's not possible to select on more than 64 sockets at once. This might work during the tests, but in the wild people might want to have more than 60 connections, at least in the transport service.
The patch attached should increase the limit to 1024.
Diffstat (limited to 'src/include/platform.h')
-rw-r--r--src/include/platform.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/platform.h b/src/include/platform.h
index aa2434731..8c1e6d601 100644
--- a/src/include/platform.h
+++ b/src/include/platform.h
@@ -77,6 +77,9 @@
77#endif 77#endif
78 78
79#ifdef _MSC_VER 79#ifdef _MSC_VER
80#ifndef FD_SETSIZE
81#define FD_SETSIZE 1024
82#endif
80#include <Winsock2.h> 83#include <Winsock2.h>
81#include <ws2tcpip.h> 84#include <ws2tcpip.h>
82#else 85#else