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

Function register_hooks

modules/aaa/mod_authz_groupfile.c:311–322  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

309}
310
311static void register_hooks(apr_pool_t *p)
312{
313 ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "group",
314 AUTHZ_PROVIDER_VERSION,
315 &authz_group_provider,
316 AP_AUTH_INTERNAL_PER_CONF);
317 ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "file-group",
318 AUTHZ_PROVIDER_VERSION,
319 &authz_filegroup_provider,
320 AP_AUTH_INTERNAL_PER_CONF);
321 ap_hook_optional_fn_retrieve(authz_groupfile_getfns, NULL, NULL, APR_HOOK_MIDDLE);
322}
323
324AP_DECLARE_MODULE(authz_groupfile) =
325{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected