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

Function ap_register_auth_provider

server/request.c:2179–2192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2177}
2178
2179AP_DECLARE(apr_status_t) ap_register_auth_provider(apr_pool_t *pool,
2180 const char *provider_group,
2181 const char *provider_name,
2182 const char *provider_version,
2183 const void *provider,
2184 int type)
2185{
2186 if ((type & AP_AUTH_INTERNAL_MASK) == AP_AUTH_INTERNAL_PER_CONF) {
2187 ++auth_internal_per_conf_providers;
2188 }
2189
2190 return ap_register_provider(pool, provider_group, provider_name,
2191 provider_version, provider);
2192}
2193
2194AP_DECLARE(void) ap_hook_check_access(ap_HOOK_access_checker_t *pf,
2195 const char * const *aszPre,

Callers 15

register_hooksFunction · 0.85
fcgi_define_providerFunction · 0.85
register_hooksFunction · 0.85
authz_dbd_hooksFunction · 0.85
register_hooksFunction · 0.85
authn_dbd_hooksFunction · 0.85
register_hooksFunction · 0.85
register_hooksFunction · 0.85
register_hooksFunction · 0.85
authaliassectionFunction · 0.85
register_hooksFunction · 0.85

Calls 1

ap_register_providerFunction · 0.85

Tested by

no test coverage detected