| 1109 | } |
| 1110 | |
| 1111 | static void stream_resume(h2_proxy_stream *stream) |
| 1112 | { |
| 1113 | h2_proxy_session *session = stream->session; |
| 1114 | ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, stream->cfront, |
| 1115 | "h2_proxy_stream(%s-%d): resuming", |
| 1116 | session->id, stream->id); |
| 1117 | stream->suspended = 0; |
| 1118 | h2_proxy_iq_remove(session->suspended, stream->id); |
| 1119 | nghttp2_session_resume_data(session->ngh2, stream->id); |
| 1120 | dispatch_event(session, H2_PROXYS_EV_STREAM_RESUMED, 0, NULL); |
| 1121 | } |
| 1122 | |
| 1123 | static int is_waiting_for_backend(h2_proxy_session *session) |
| 1124 | { |
no test coverage detected