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

Function h2_ignore_resp_trailer

modules/http2/h2_util.c:1685–1693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1683}
1684
1685int 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
1695static apr_status_t req_add_header(apr_table_t *headers, apr_pool_t *pool,
1696 nghttp2_nv *nv, h2_hd_scratch *scratch,

Callers

nothing calls this directly

Calls 1

contains_nameFunction · 0.85

Tested by

no test coverage detected