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

Function ev_stream_submitted

modules/http2/h2_proxy_session.c:1367–1379  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1365}
1366
1367static void ev_stream_submitted(h2_proxy_session *session, int stream_id,
1368 const char *msg)
1369{
1370 switch (session->state) {
1371 case H2_PROXYS_ST_IDLE:
1372 case H2_PROXYS_ST_WAIT:
1373 transit(session, "stream submitted", H2_PROXYS_ST_BUSY);
1374 break;
1375 default:
1376 /* nop */
1377 break;
1378 }
1379}
1380
1381static void ev_stream_done(h2_proxy_session *session, int stream_id,
1382 const char *msg)

Callers 1

dispatch_eventFunction · 0.85

Calls 1

transitFunction · 0.70

Tested by

no test coverage detected