| 245 | } |
| 246 | |
| 247 | static void input_append_bucket(h2_stream *stream, apr_bucket *b) |
| 248 | { |
| 249 | if (!stream->in_buffer) { |
| 250 | stream_setup_input(stream); |
| 251 | stream->in_buffer = apr_brigade_create( |
| 252 | stream->pool, stream->session->c1->bucket_alloc); |
| 253 | } |
| 254 | APR_BRIGADE_INSERT_TAIL(stream->in_buffer, b); |
| 255 | } |
| 256 | |
| 257 | static void input_append_data(h2_stream *stream, const char *data, apr_size_t len) |
| 258 | { |
no test coverage detected