| 1683 | } |
| 1684 | |
| 1685 | int h2_ignore_resp_trailer(const char *name, size_t len) |
| 1686 | { |
| 1687 | nghttp2_nv nv; |
| 1688 | |
| 1689 | nv.name = (uint8_t*)name; |
| 1690 | nv.namelen = len; |
| 1691 | return (contains_name(H2_LIT_ARGS(IgnoredResponseHeaders), &nv) |
| 1692 | || contains_name(H2_LIT_ARGS(IgnoredResponseTrailers), &nv)); |
| 1693 | } |
| 1694 | |
| 1695 | static apr_status_t req_add_header(apr_table_t *headers, apr_pool_t *pool, |
| 1696 | nghttp2_nv *nv, h2_hd_scratch *scratch, |
nothing calls this directly
no test coverage detected