| 209 | } |
| 210 | |
| 211 | apr_status_t h2_stream_prepare_processing(h2_stream *stream) |
| 212 | { |
| 213 | /* Right before processing starts, last chance to decide if |
| 214 | * there is need to an input beam. */ |
| 215 | if (!stream->input_closed) { |
| 216 | stream_setup_input(stream); |
| 217 | } |
| 218 | return APR_SUCCESS; |
| 219 | } |
| 220 | |
| 221 | static int input_buffer_is_empty(h2_stream *stream) |
| 222 | { |
no test coverage detected