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

Function h2_session_ev_input_pending

modules/http2/h2_session.c:1490–1501  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1488}
1489
1490static void h2_session_ev_input_pending(h2_session *session, int arg, const char *msg)
1491{
1492 switch (session->state) {
1493 case H2_SESSION_ST_INIT:
1494 case H2_SESSION_ST_IDLE:
1495 case H2_SESSION_ST_WAIT:
1496 transit(session, "input read", H2_SESSION_ST_BUSY);
1497 break;
1498 default:
1499 break;
1500 }
1501}
1502
1503static void h2_session_ev_input_exhausted(h2_session *session, int arg, const char *msg)
1504{

Callers 1

Calls 1

transitFunction · 0.70

Tested by

no test coverage detected