diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-02-05 13:00:49 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-02-05 13:00:49 +0100 |
commit | d21bf21a362cf6d20d8d060bb91ee2fdca1dd88b (patch) | |
tree | bc0a64361660fcba9c387524449e54f3e05f21e9 /src/tcp_connecter.cpp | |
parent | 0888fcd06f1c66ec3dfab744bfc24d1486737c7e (diff) |
allow async connect on Win32 return WSAECONNABORTED
Diffstat (limited to 'src/tcp_connecter.cpp')
-rw-r--r-- | src/tcp_connecter.cpp | 3 |
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; |