>From e895607ca7a97378f7ccc5ab050fc54fd54a80ad Mon Sep 17 00:00:00 2001 From: Martin Sustrik <[email protected]> Date: Tue, 14 Jun 2011 09:58:18 +0200 Subject: [PATCH] ENETUNREACH is a valid error from connect
This patch fixed the JIRA issue 223 Signed-off-by: Martin Sustrik <[email protected]> --- 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 94891b5..9515f55 100644 --- a/src/tcp_connecter.cpp +++ b/src/tcp_connecter.cpp @@ -295,7 +295,8 @@ zmq::fd_t zmq::tcp_connecter_t::connect () // Networking problems are OK. No need to assert. errno = err; errno_assert (errno == ECONNREFUSED || errno == ECONNRESET || - errno == ETIMEDOUT || errno == EHOSTUNREACH); + errno == ETIMEDOUT || errno == EHOSTUNREACH || + errno == ENETUNREACH); return retired_fd; } -- 1.7.0.4
_______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
