Commit 0a6fc027 authored by Martin Hurton's avatar Martin Hurton

fix connection establishment for AF_UNIX sockets

parent 60e45f34
...@@ -128,7 +128,7 @@ void zmq::ipc_connecter_t::start_connecting () ...@@ -128,7 +128,7 @@ void zmq::ipc_connecter_t::start_connecting ()
} }
// Connection establishment may be delayed. Poll for its completion. // Connection establishment may be delayed. Poll for its completion.
else if (rc == -1 && errno == EAGAIN) { else if (rc == -1 && errno == EINPROGRESS) {
handle = add_fd (s); handle = add_fd (s);
handle_valid = true; handle_valid = true;
set_pollout (handle); set_pollout (handle);
......
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