MCPcopy Create free account
hub / github.com/apache/httpd / ap_hook_check_access

Function ap_hook_check_access

server/request.c:2194–2204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2192}
2193
2194AP_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
2206AP_DECLARE(void) ap_hook_check_access_ex(ap_HOOK_access_checker_ex_t *pf,
2207 const char * const *aszPre,

Callers 4

register_hooksFunction · 0.85
ssl_register_hooksFunction · 0.85
x_register_hooksFunction · 0.85
register_hooksFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected