| 198 | } |
| 199 | |
| 200 | static 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 | |
| 211 | apr_status_t h2_stream_prepare_processing(h2_stream *stream) |
| 212 | { |
no test coverage detected