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
AgeCommit message (Collapse)Author
2016-01-15ustream-fd: handle ENOTCONN for read/write on not-yet-connected socketsFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2015-07-14ustream-fd: handle uloop errorsPhilip Craig
The default uloop error handling is to delete the fd. Continue to do that, but also set the write_error flag and notify the user. Signed-off-by: Philip Craig <philipjcraig@gmail.com>
2015-06-14ustream-fd: stop trying to read when s->read_blocked is set.Yousong Zhou
User's s->notify_read is called in ustream_fill_read(). If s->read_blocked is set there, then stop reading more. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2015-06-14ustream-fd: readability change.Yousong Zhou
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2015-01-21ustream-fd: fix logic invert of write polling.Yousong Zhou
ustream_write_pending() returns true if write buffer was flushed there. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2013-05-31ustream: only report stream eof once via state_change callbackFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-31ustream-fd: do not loop back into the callback from ustream_fd_set_uloopFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-31ustream: set the right EOF flagFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-30ustream-fd: only use read() == 0 as eof indication, and issue a state change ↵Felix Fietkau
notification when that happens Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-22ustream-fd: retry partial writesFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-03ustream-fd: prevent callbacks during initFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-03ustream-fd: fix read error handlingFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2012-12-30ustream: avoid calling s->poll from a write path to avoid looping back ↵Felix Fietkau
through the notify_write cb Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2012-12-30ustream: fix polling for write buffer availability after buffering writesFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2012-10-30ustream: add a poll callback function defined by the ustream implementationFelix Fietkau
2012-10-22add ustream, an api for stream buffer managementFelix Fietkau