Commit 6052709c authored by Martin Sustrik's avatar Martin Sustrik

ENETDOWN is a legal error from TCP connect

Signed-off-by: 's avatarMartin Sustrik <sustrik@250bpm.com>
parent 5b77a41e
......@@ -296,7 +296,7 @@ zmq::fd_t zmq::tcp_connecter_t::connect ()
errno = err;
errno_assert (errno == ECONNREFUSED || errno == ECONNRESET ||
errno == ETIMEDOUT || errno == EHOSTUNREACH ||
errno == ENETUNREACH);
errno == ENETUNREACH || errno == ENETDOWN);
return retired_fd;
}
......
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