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

Function stream_setup_input

modules/http2/h2_stream.c:200–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198}
199
200static void stream_setup_input(h2_stream *stream)
201{
202 if (stream->input != NULL) return;
203 ap_assert(!stream->input_closed);
204 ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, stream->session->c1,
205 H2_STRM_MSG(stream, "setup input beam"));
206 h2_beam_create(&stream->input, stream->session->c1,
207 stream->pool, stream->id,
208 "input", 0, stream->session->s->timeout);
209}
210
211apr_status_t h2_stream_prepare_processing(h2_stream *stream)
212{

Callers 3

input_append_bucketFunction · 0.85
input_append_dataFunction · 0.85

Calls 1

h2_beam_createFunction · 0.85

Tested by

no test coverage detected