ustream: add ustream_read_buf_full() helper
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
This commit is contained in:
parent
4d0a00c82c
commit
975ac3e5e3
1 changed files with 5 additions and 0 deletions
|
@ -163,6 +163,11 @@ static inline bool ustream_read_blocked(struct ustream *s)
|
||||||
return !!(s->read_blocked & READ_BLOCKED_USER);
|
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 --- ***/
|
/*** --- functions only used by ustream implementations --- ***/
|
||||||
|
|
||||||
/* ustream_init_defaults: fill default callbacks and options */
|
/* ustream_init_defaults: fill default callbacks and options */
|
||||||
|
|
Loading…
Reference in a new issue