mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-15 18:31:09 +08:00
commit
7bec6c1bdb
2
NEWS
2
NEWS
@ -1,6 +1,8 @@
|
||||
0MQ version 4.1.4 stable, released on 2015/xx/xx
|
||||
================================================
|
||||
|
||||
* Fixed #1399 - assertion failure in tcp.cpp after network reconnect.
|
||||
|
||||
|
||||
0MQ version 4.1.3 stable, released on 2015/08/17
|
||||
================================================
|
||||
|
@ -192,7 +192,6 @@ int zmq::tcp_write (fd_t s_, const void *data_, size_t size_)
|
||||
&& errno != EBADF
|
||||
&& errno != EDESTADDRREQ
|
||||
&& errno != EFAULT
|
||||
&& errno != EINVAL
|
||||
&& errno != EISCONN
|
||||
&& errno != EMSGSIZE
|
||||
&& errno != ENOMEM
|
||||
@ -241,7 +240,6 @@ int zmq::tcp_read (fd_t s_, void *data_, size_t size_)
|
||||
if (rc == -1) {
|
||||
errno_assert (errno != EBADF
|
||||
&& errno != EFAULT
|
||||
&& errno != EINVAL
|
||||
&& errno != ENOMEM
|
||||
&& errno != ENOTSOCK);
|
||||
if (errno == EWOULDBLOCK || errno == EINTR)
|
||||
|
Loading…
x
Reference in New Issue
Block a user