X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=ustream.h;h=2df429c0a165a341ca83ec557c3e6d760600fe94;hp=0ec2ac313bd12ed1d6a1d842aa02dc3623d2cdd8;hb=a9b44ebe556c3f60de2fc1154d48a26f43aa15b7;hpb=ba6cd4c3222c90a0bb583afbcba335d36ceb8418 diff --git a/ustream.h b/ustream.h index 0ec2ac3..2df429c 100644 --- a/ustream.h +++ b/ustream.h @@ -49,9 +49,10 @@ struct ustream_buf_list { struct ustream { struct ustream_buf_list r, w; struct uloop_timeout state_change; + struct ustream *next; /* - * notify_read: + * notify_read: (optional) * called by the ustream core to notify that new data is available * for reading. * must not free the ustream from this callback @@ -67,7 +68,7 @@ struct ustream { void (*notify_write)(struct ustream *s, int bytes); /* - * notify_state: + * notify_state: (optional) * called by the ustream implementation to notify that the read * side of the stream is closed (eof is set) or there was a write * error (write_error is set). @@ -100,6 +101,14 @@ struct ustream { void (*set_read_blocked)(struct ustream *s); /* + * poll: (optional) + * defined by the upstream implementation, called to request polling for + * available data. + * returns true if data was fetched. + */ + bool (*poll)(struct ustream *s); + + /* * ustream user should set this if the input stream is expected * to contain string data. the core will keep all data 0-terminated. */ @@ -181,4 +190,12 @@ static inline void ustream_state_change(struct ustream *s) uloop_timeout_set(&s->state_change, 0); } +static inline bool ustream_poll(struct ustream *s) +{ + if (!s->poll) + return false; + + return s->poll(s); +} + #endif