| 76 | }; |
| 77 | |
| 78 | const 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 |
no outgoing calls
no test coverage detected