| 175 | authn_cache_store = APR_RETRIEVE_OPTIONAL_FN(ap_authn_cache_store); |
| 176 | } |
| 177 | static void register_hooks(apr_pool_t *p) |
| 178 | { |
| 179 | ap_register_auth_provider(p, AUTHN_PROVIDER_GROUP, "file", |
| 180 | AUTHN_PROVIDER_VERSION, |
| 181 | &authn_file_provider, AP_AUTH_INTERNAL_PER_CONF); |
| 182 | ap_hook_optional_fn_retrieve(opt_retr, NULL, NULL, APR_HOOK_MIDDLE); |
| 183 | } |
| 184 | |
| 185 | AP_DECLARE_MODULE(authn_file) = |
| 186 | { |
nothing calls this directly
no test coverage detected