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
2019-06-16ustream: Add format string checks to ustream_(v)printf()Hauke Mehrtens
This tells the compiler that these functions are takeing a format string, the compiler will now do additional checks and is able to emitt a compile warning in case the format string is not valid. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-01-21ustream: add function ustream_read().Yousong Zhou
It can be used to fill caller-specified buffer with data already in ustream read buffer. Useful in the following use pattern. int available = ustream_pending_data(s, false); if (available >= sizeof(struct msghdr)) { struct msghdr h; ustream_read(s, &h, sizeof(h)); } Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2013-01-31ustream: another fix for ustream_read_buf_full() with split read buffersFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-30ustream: fix ustream_read_buf_full() for multiple read buffersFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2013-01-01ustream: add ustream_pending_data accessor functionFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2012-12-30ustream: add ustream_read_buf_full() helperFelix Fietkau
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
2012-10-30ustream: make notify_state optional as wellFelix Fietkau
2012-10-30ustream: mark notify_read cb as optionalFelix Fietkau
2012-10-30ustream: add a poll callback function defined by the ustream implementationFelix Fietkau
2012-10-23ustream: add a pointer to the ustream struct useful for chaining ustreamsFelix Fietkau
2012-10-22ustream.h: include stdarg.hFelix Fietkau
2012-10-22add ustream, an api for stream buffer managementFelix Fietkau