Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-01-15 23:35:48 +0300
committerFelix Fietkau <nbd@openwrt.org>2016-01-15 23:35:48 +0300
commitbc7e2772763929a8932c9ec1fc676bee9989f0ae (patch)
tree00e31c1041c35994d2ca202714fcb35cec31f5bd /ustream-fd.c
parent663d7d4b88e7fba1ad56c6e9742d1c157724e38c (diff)
ustream-fd: handle ENOTCONN for read/write on not-yet-connected sockets
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'ustream-fd.c')
-rw-r--r--ustream-fd.c4
1 files changed, 2 insertions, 2 deletions
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;