Skip to content

Commit

Permalink
UDP engine aborts on networking-related errors from socket syscalls z…
Browse files Browse the repository at this point in the history
  • Loading branch information
atomashpolskiy committed Aug 24, 2019
1 parent cb1f24d commit 4cf5eb0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,8 @@ int zmq::bind_to_device (fd_t s_, const std::string &bound_device_)
if (rc != 0) {
assert_success_or_recoverable (s_, rc);
return -1;
} else {
return 0;
}
#else
LIBZMQ_UNUSED (s_);
Expand Down

0 comments on commit 4cf5eb0

Please sign in to comment.