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

Function authz_dbd_hooks

modules/aaa/mod_authz_dbd.c:384–398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

382};
383
384static void authz_dbd_hooks(apr_pool_t *p)
385{
386 ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "dbd-group",
387 AUTHZ_PROVIDER_VERSION,
388 &authz_dbdgroup_provider,
389 AP_AUTH_INTERNAL_PER_CONF);
390 ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "dbd-login",
391 AUTHZ_PROVIDER_VERSION,
392 &authz_dbdlogin_provider,
393 AP_AUTH_INTERNAL_PER_CONF);
394 ap_register_auth_provider(p, AUTHZ_PROVIDER_GROUP, "dbd-logout",
395 AUTHZ_PROVIDER_VERSION,
396 &authz_dbdlogout_provider,
397 AP_AUTH_INTERNAL_PER_CONF);
398}
399
400AP_DECLARE_MODULE(authz_dbd) =
401{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected