| 1391 | ******************************************************************************/ |
| 1392 | |
| 1393 | static int count_header(void *ctx, const char *key, const char *value) |
| 1394 | { |
| 1395 | if (!h2_util_ignore_resp_header(key)) { |
| 1396 | (*((size_t*)ctx))++; |
| 1397 | } |
| 1398 | return 1; |
| 1399 | } |
| 1400 | |
| 1401 | static const char *inv_field_name_chr(const char *token) |
| 1402 | { |
nothing calls this directly
no test coverage detected