It was replaced by either b_tail() when the buffer has no input data, or
b_peek(b, b->o).
return ret;
}
-/* Returns the end of the output data in a buffer */
-static inline char *bo_end(const struct buffer *b)
-{
- return b->p;
-}
-
/* Returns the amount of output data that can contiguously be read at once */
static inline int bo_contig_data(const struct buffer *b)
{
while (1) {
const char *p1 = NULL, *p2 = NULL;
const char *start = b_ptr(buf, (int)(count - buf->o));
- const char *stop = bo_end(buf);
+ const char *stop = b_peek(buf, buf->o);
const char *ptr = start;
int bytes = 0;
chunk_reset(&outbuf);
while (1) {
- outbuf.str = bo_end(h2c->mbuf);
+ outbuf.str = b_tail(h2c->mbuf);
outbuf.size = bo_contig_space(h2c->mbuf);
outbuf.len = 0;
chunk_reset(&outbuf);
while (1) {
- outbuf.str = bo_end(h2c->mbuf);
+ outbuf.str = b_tail(h2c->mbuf);
outbuf.size = bo_contig_space(h2c->mbuf);
outbuf.len = 0;