X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=ustream-fd.c;h=5ffca53328858280e3a1bb51c944728b71fe38c7;hp=e39da98e3d5ccfa120b7f4a5ee8e6845626dd0f9;hb=8964d77f806291bfbbad6a2e2b530c1838dec29c;hpb=f24b6294c2d070e03ce663a60cdc50c9e5ab50e8 diff --git a/ustream-fd.c b/ustream-fd.c index e39da98..5ffca53 100644 --- a/ustream-fd.c +++ b/ustream-fd.c @@ -21,8 +21,6 @@ #include #include "ustream.h" -static bool _init = false; - static void ustream_fd_set_uloop(struct ustream *s, bool write) { struct ustream_fd *sf = container_of(s, struct ustream_fd, stream); @@ -37,9 +35,6 @@ static void ustream_fd_set_uloop(struct ustream *s, bool write) flags |= ULOOP_WRITE; uloop_fd_add(&sf->fd, flags); - - if ((flags & ULOOP_READ) && !_init); - sf->fd.cb(&sf->fd, ULOOP_READ); } static void ustream_fd_set_read_blocked(struct ustream *s) @@ -55,6 +50,9 @@ static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more) char *buf; do { + if (s->read_blocked) + break; + buf = ustream_reserve(s, 1, &buflen); if (!buf) break; @@ -71,8 +69,9 @@ static void ustream_fd_read_pending(struct ustream_fd *sf, bool *more) } if (!len) { - sf->fd.eof = true; - ustream_state_change(s); + if (!s->eof) + ustream_state_change(s); + s->eof = true; ustream_fd_set_uloop(s, false); return; } @@ -123,7 +122,8 @@ static bool __ustream_fd_poll(struct ustream_fd *sf, unsigned int events) ustream_fd_read_pending(sf, &more); if (events & ULOOP_WRITE) { - if (!ustream_write_pending(s)) + bool no_more = ustream_write_pending(s); + if (no_more) ustream_fd_set_uloop(s, false); } @@ -163,7 +163,5 @@ void ustream_fd_init(struct ustream_fd *sf, int fd) s->write = ustream_fd_write; s->free = ustream_fd_free; s->poll = ustream_fd_poll; - _init = true; ustream_fd_set_uloop(s, false); - _init = false; }