Merge pull request #2569 from sipa/win1024fd

Allow select()ing up to 1024 file descriptors on Windows
This commit is contained in:
Wladimir J. van der Laan 2013-04-29 10:27:33 -07:00
commit 7226806e8d

View file

@ -11,6 +11,7 @@
#ifndef NOMINMAX
#define NOMINMAX
#endif
#define FD_SETSIZE 1024 // max number of fds in fd_set
#include <winsock2.h>
#include <mswsock.h>
#include <ws2tcpip.h>