| 919 | } |
| 920 | |
| 921 | static 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 | } |
| 933 | static apr_status_t ap_headers_early(request_rec *r) |
| 934 | { |
| 935 | headers_conf *dirconf = ap_get_module_config(r->per_dir_config, |
nothing calls this directly
no test coverage detected