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

Function stream_resume

modules/http2/h2_proxy_session.c:1111–1121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1109}
1110
1111static 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
1123static int is_waiting_for_backend(h2_proxy_session *session)
1124{

Callers 3

on_frame_recvFunction · 0.85
check_suspendedFunction · 0.85
ping_arrived_iterFunction · 0.85

Calls 2

h2_proxy_iq_removeFunction · 0.85
dispatch_eventFunction · 0.85

Tested by

no test coverage detected