| 2125 | } |
| 2126 | |
| 2127 | static void ap_proxy_http_register_hook(apr_pool_t *p) |
| 2128 | { |
| 2129 | ap_hook_post_config(proxy_http_post_config, NULL, NULL, APR_HOOK_MIDDLE); |
| 2130 | proxy_hook_scheme_handler(proxy_http_handler, NULL, NULL, APR_HOOK_FIRST); |
| 2131 | proxy_hook_canon_handler(proxy_http_canon, NULL, NULL, APR_HOOK_FIRST); |
| 2132 | warn_rx = ap_pregcomp(p, "[0-9]{3}[ \t]+[^ \t]+[ \t]+\"[^\"]*\"([ \t]+\"([^\"]+)\")?", 0); |
| 2133 | } |
| 2134 | |
| 2135 | AP_DECLARE_MODULE(proxy_http) = { |
| 2136 | STANDARD20_MODULE_STUFF, |
nothing calls this directly
no test coverage detected