| 212 | authn_cache_store = APR_RETRIEVE_OPTIONAL_FN(ap_authn_cache_store); |
| 213 | } |
| 214 | static void register_hooks(apr_pool_t *p) |
| 215 | { |
| 216 | ap_register_auth_provider(p, AUTHN_PROVIDER_GROUP, "dbm", |
| 217 | AUTHN_PROVIDER_VERSION, |
| 218 | &authn_dbm_provider, AP_AUTH_INTERNAL_PER_CONF); |
| 219 | ap_hook_optional_fn_retrieve(opt_retr, NULL, NULL, APR_HOOK_MIDDLE); |
| 220 | } |
| 221 | |
| 222 | AP_DECLARE_MODULE(authn_dbm) = |
| 223 | { |
nothing calls this directly
no test coverage detected