| 382 | }; |
| 383 | |
| 384 | static 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 | |
| 400 | AP_DECLARE_MODULE(authz_dbd) = |
| 401 | { |
nothing calls this directly
no test coverage detected