| 2192 | } |
| 2193 | |
| 2194 | AP_DECLARE(void) ap_hook_check_access(ap_HOOK_access_checker_t *pf, |
| 2195 | const char * const *aszPre, |
| 2196 | const char * const *aszSucc, |
| 2197 | int nOrder, int type) |
| 2198 | { |
| 2199 | if ((type & AP_AUTH_INTERNAL_MASK) == AP_AUTH_INTERNAL_PER_CONF) { |
| 2200 | ++auth_internal_per_conf_hooks; |
| 2201 | } |
| 2202 | |
| 2203 | ap_hook_access_checker(pf, aszPre, aszSucc, nOrder); |
| 2204 | } |
| 2205 | |
| 2206 | AP_DECLARE(void) ap_hook_check_access_ex(ap_HOOK_access_checker_ex_t *pf, |
| 2207 | const char * const *aszPre, |
no outgoing calls
no test coverage detected