summaryrefslogtreecommitdiff
path: root/lib/multihandle.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-12-05 17:56:35 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-12-06 22:40:38 +0100
commit2260e0ebe6d45529495231b3e37a0c58fb92a6a2 (patch)
tree29f293ddd6c7a0790cb05ba2d7c9d87bbd2e0086 /lib/multihandle.h
parent2c0d7212151bce7f51ffb83a78876c2ed224958a (diff)
downloadcurl-2260e0ebe6d45529495231b3e37a0c58fb92a6a2.tar.gz
Revert "multi: implement wait using winsock events"
This reverts commit d2a7d7c185f98df8f3e585e5620cbc0482e45fac. This commit also reverts the subsequent follow-ups to that commit, which were all done within windows #ifdefs that are removed in this change. Marc helped me verify this. Fixes #6146 Closes #6281
Diffstat (limited to 'lib/multihandle.h')
-rw-r--r--lib/multihandle.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/multihandle.h b/lib/multihandle.h
index 52df67bbd..de4f74069 100644
--- a/lib/multihandle.h
+++ b/lib/multihandle.h
@@ -138,14 +138,10 @@ struct Curl_multi {
previous callback */
unsigned int max_concurrent_streams;
-#ifdef USE_WINSOCK
- WSAEVENT wsa_event; /* winsock event used for waits */
-#else
#ifdef ENABLE_WAKEUP
curl_socket_t wakeup_pair[2]; /* socketpair() used for wakeup
0 is used for read, 1 is used for write */
#endif
-#endif
/* multiplexing wanted */
bool multiplexing;
bool recheckstate; /* see Curl_multi_connchanged */