summaryrefslogtreecommitdiff
path: root/src/tcp_connecter.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-02-05 13:00:49 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-02-05 13:00:49 +0100
commitd21bf21a362cf6d20d8d060bb91ee2fdca1dd88b (patch)
treebc0a64361660fcba9c387524449e54f3e05f21e9 /src/tcp_connecter.cpp
parent0888fcd06f1c66ec3dfab744bfc24d1486737c7e (diff)
allow async connect on Win32 return WSAECONNABORTED
Diffstat (limited to 'src/tcp_connecter.cpp')
-rw-r--r--src/tcp_connecter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tcp_connecter.cpp b/src/tcp_connecter.cpp
index 6dbb934..4df4fae 100644
--- a/src/tcp_connecter.cpp
+++ b/src/tcp_connecter.cpp
@@ -117,7 +117,8 @@ zmq::fd_t zmq::tcp_connecter_t::connect ()
// Assert that the error was caused by the networking problems
// rather than 0MQ bug.
- zmq_assert (err == WSAECONNREFUSED || err == WSAETIMEDOUT);
+ zmq_assert (err == WSAECONNREFUSED || err == WSAETIMEDOUT ||
+ err == WSAECONNABORTED);
errno = err;
return retired_fd;