From 33912d1f237537f51f29ca06e3e396f04aeb4671 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Fri, 26 Apr 2013 01:05:35 +0200 Subject: [PATCH] Allow select()ing up to 1024 file descriptors on Windows --- src/compat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compat.h b/src/compat.h index 79ebb932..70622169 100644 --- a/src/compat.h +++ b/src/compat.h @@ -11,6 +11,7 @@ #ifndef NOMINMAX #define NOMINMAX #endif +#define FD_SETSIZE 1024 // max number of fds in fd_set #include #include #include