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

Function register_hooks

modules/aaa/mod_authz_dbm.c:334–345  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332}
333
334static void register_hooks(apr_pool_t *p)
335{
336 ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "dbm-group",
337 AUTHZ_PROVIDER_VERSION,
338 &authz_dbmgroup_provider,
339 AP_AUTH_INTERNAL_PER_CONF);
340 ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "dbm-file-group",
341 AUTHZ_PROVIDER_VERSION,
342 &authz_dbmfilegroup_provider,
343 AP_AUTH_INTERNAL_PER_CONF);
344 ap_hook_optional_fn_retrieve(authz_dbm_getfns, NULL, NULL, APR_HOOK_MIDDLE);
345}
346
347AP_DECLARE_MODULE(authz_dbm) =
348{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected