MCPcopy Create free account
hub / github.com/apache/httpd / input_append_bucket

Function input_append_bucket

modules/http2/h2_stream.c:247–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

245}
246
247static 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
257static void input_append_data(h2_stream *stream, const char *data, apr_size_t len)
258{

Callers 1

close_inputFunction · 0.85

Calls 1

stream_setup_inputFunction · 0.85

Tested by

no test coverage detected