| 255 | } |
| 256 | |
| 257 | static void input_append_data(h2_stream *stream, const char *data, apr_size_t len) |
| 258 | { |
| 259 | if (!stream->in_buffer) { |
| 260 | stream_setup_input(stream); |
| 261 | stream->in_buffer = apr_brigade_create( |
| 262 | stream->pool, stream->session->c1->bucket_alloc); |
| 263 | } |
| 264 | apr_brigade_write(stream->in_buffer, NULL, NULL, data, len); |
| 265 | } |
| 266 | |
| 267 | |
| 268 | static apr_status_t close_input(h2_stream *stream) |
no test coverage detected