ustream: add ustream_read_buf_full() helper

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
This commit is contained in:
Felix Fietkau 2012-12-30 15:25:35 +01:00
parent 4d0a00c82c
commit 975ac3e5e3

View file

@ -163,6 +163,11 @@ static inline bool ustream_read_blocked(struct ustream *s)
return !!(s->read_blocked & READ_BLOCKED_USER);
}
static inline bool ustream_read_buf_full(struct ustream *s)
{
return s->r.data_bytes == s->r.buffer_len;
}
/*** --- functions only used by ustream implementations --- ***/
/* ustream_init_defaults: fill default callbacks and options */