From: Felix Fietkau Date: Fri, 15 Jan 2016 20:35:48 +0000 (+0100) Subject: ustream-fd: handle ENOTCONN for read/write on not-yet-connected sockets X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=bc7e2772763929a8932c9ec1fc676bee9989f0ae;hp=663d7d4b88e7fba1ad56c6e9742d1c157724e38c ustream-fd: handle ENOTCONN for read/write on not-yet-connected sockets Signed-off-by: Felix Fietkau --- diff --git a/ustream-fd.c b/ustream-fd.c index d5abb5a..b546fa1 100644 --- a/ustream-fd.c +++ b/ustream-fd.c @@ -62,7 +62,7 @@ static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more) if (errno == EINTR) continue; - if (errno == EAGAIN) + if (errno == EAGAIN || errno == ENOTCONN) return; len = 0; @@ -96,7 +96,7 @@ static int ustream_fd_write(struct ustream *s, const char *buf, int buflen, bool if (errno == EINTR) continue; - if (errno == EAGAIN || errno == EWOULDBLOCK) + if (errno == EAGAIN || errno == EWOULDBLOCK || errno == ENOTCONN) break; return -1;