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

Function input_append_data

modules/http2/h2_stream.c:257–265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255}
256
257static 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
268static apr_status_t close_input(h2_stream *stream)

Callers 1

h2_stream_recv_DATAFunction · 0.85

Calls 1

stream_setup_inputFunction · 0.85

Tested by

no test coverage detected