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

Function h2_session_state_str

modules/http2/h2_session.c:1428–1434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1426};
1427
1428const char *h2_session_state_str(h2_session_state state)
1429{
1430 if (state >= (sizeof(StateNames)/sizeof(StateNames[0]))) {
1431 return "unknown";
1432 }
1433 return StateNames[state];
1434}
1435
1436static void transit(h2_session *session, const char *action, h2_session_state nstate)
1437{

Callers 1

transitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected