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

Function h2_protocol_err_description

modules/http2/h2_protocol.c:78–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76};
77
78const char *h2_protocol_err_description(unsigned int h2_error)
79{
80 if (h2_error < (sizeof(h2_err_descr)/sizeof(h2_err_descr[0]))) {
81 return h2_err_descr[h2_error];
82 }
83 return "unknown http/2 error code";
84}
85
86/*******************************************************************************
87 * Check connection security requirements of RFC 7540

Callers 1

on_stream_close_cbFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected