summaryrefslogtreecommitdiff
path: root/src/mongo/util/net
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-04-03 15:32:54 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-04-14 11:52:34 -0400
commit6b06d6057cbd908aa2290fe8e75cc3bfe3c16c27 (patch)
tree3232c5efb55d98a20684cca428eff65ecb50f989 /src/mongo/util/net
parentdd6c44de50bea877ab865fdb95aa3eeffce649b9 (diff)
downloadmongo-6b06d6057cbd908aa2290fe8e75cc3bfe3c16c27.tar.gz
SERVER-17866: Make minimum Windows build version Vista/2008
Diffstat (limited to 'src/mongo/util/net')
-rw-r--r--src/mongo/util/net/socket_poll.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mongo/util/net/socket_poll.h b/src/mongo/util/net/socket_poll.h
index 901bb479a37..b3e8ed2fcd3 100644
--- a/src/mongo/util/net/socket_poll.h
+++ b/src/mongo/util/net/socket_poll.h
@@ -30,28 +30,6 @@
#ifndef _WIN32
# include <sys/poll.h>
-#else
-# if defined(NTDDI_VERSION) && ( !defined(NTDDI_VISTA) || ( NTDDI_VERSION < NTDDI_VISTA ) )
- // These are only defined in winsock2.h on newer windows but we need them everywhere.
-# define POLLRDNORM 0x0100
-# define POLLRDBAND 0x0200
-# define POLLIN (POLLRDNORM | POLLRDBAND)
-# define POLLPRI 0x0400
-
-# define POLLWRNORM 0x0010
-# define POLLOUT (POLLWRNORM)
-# define POLLWRBAND 0x0020
-
-# define POLLERR 0x0001
-# define POLLHUP 0x0002
-# define POLLNVAL 0x0004
-
- struct pollfd {
- SOCKET fd;
- SHORT events;
- SHORT revents;
- };
-# endif // old windows
#endif // ndef _WIN32
namespace mongo {