Commit c23420ce authored by Pieter Hintjens's avatar Pieter Hintjens

Merge pull request #1078 from mkluwe/handle-WSAEADDRINUSE

handle WSAEADDRINUSE in tcp_connecter_t::connect
parents ff6b684a fa95d0b5
......@@ -318,7 +318,8 @@ zmq::fd_t zmq::tcp_connecter_t::connect ()
err == WSAENETUNREACH ||
err == WSAENETDOWN ||
err == WSAEACCES ||
err == WSAEINVAL)
err == WSAEINVAL ||
err == WSAEADDRINUSE)
return retired_fd;
wsa_assert_no (err);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment