| 406 | } |
| 407 | |
| 408 | static void register_hooks(apr_pool_t *p) |
| 409 | { |
| 410 | APR_REGISTER_OPTIONAL_FN(authn_ap_auth_type); |
| 411 | APR_REGISTER_OPTIONAL_FN(authn_ap_auth_name); |
| 412 | |
| 413 | ap_hook_check_authn(authenticate_no_user, NULL, NULL, APR_HOOK_LAST, |
| 414 | AP_AUTH_INTERNAL_PER_CONF); |
| 415 | } |
| 416 | |
| 417 | AP_DECLARE_MODULE(authn_core) = |
| 418 | { |
nothing calls this directly
no test coverage detected