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

Function ap_headers_fixup

modules/metadata/mod_headers.c:921–932  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

919}
920
921static apr_status_t ap_headers_fixup(request_rec *r)
922{
923 headers_conf *dirconf = ap_get_module_config(r->per_dir_config,
924 &headers_module);
925
926 /* do the fixup */
927 if (dirconf->fixup_in->nelts) {
928 do_headers_fixup(r, r->headers_in, dirconf->fixup_in, 0);
929 }
930
931 return DECLINED;
932}
933static apr_status_t ap_headers_early(request_rec *r)
934{
935 headers_conf *dirconf = ap_get_module_config(r->per_dir_config,

Callers

nothing calls this directly

Calls 2

ap_get_module_configFunction · 0.85
do_headers_fixupFunction · 0.85

Tested by

no test coverage detected