| 2228 | } |
| 2229 | |
| 2230 | AP_DECLARE(void) ap_hook_check_authz(ap_HOOK_auth_checker_t *pf, |
| 2231 | const char * const *aszPre, |
| 2232 | const char * const *aszSucc, |
| 2233 | int nOrder, int type) |
| 2234 | { |
| 2235 | if ((type & AP_AUTH_INTERNAL_MASK) == AP_AUTH_INTERNAL_PER_CONF) { |
| 2236 | ++auth_internal_per_conf_hooks; |
| 2237 | } |
| 2238 | |
| 2239 | ap_hook_auth_checker(pf, aszPre, aszSucc, nOrder); |
| 2240 | } |
| 2241 | |
| 2242 | AP_DECLARE(request_rec *) ap_sub_req_method_uri(const char *method, |
| 2243 | const char *new_uri, |
no outgoing calls
no test coverage detected