| 2216 | } |
| 2217 | |
| 2218 | AP_DECLARE(void) ap_hook_check_authn(ap_HOOK_check_user_id_t *pf, |
| 2219 | const char * const *aszPre, |
| 2220 | const char * const *aszSucc, |
| 2221 | int nOrder, int type) |
| 2222 | { |
| 2223 | if ((type & AP_AUTH_INTERNAL_MASK) == AP_AUTH_INTERNAL_PER_CONF) { |
| 2224 | ++auth_internal_per_conf_hooks; |
| 2225 | } |
| 2226 | |
| 2227 | ap_hook_check_user_id(pf, aszPre, aszSucc, nOrder); |
| 2228 | } |
| 2229 | |
| 2230 | AP_DECLARE(void) ap_hook_check_authz(ap_HOOK_auth_checker_t *pf, |
| 2231 | const char * const *aszPre, |
no outgoing calls
no test coverage detected