| 488 | } |
| 489 | |
| 490 | static void register_hooks(apr_pool_t *p) |
| 491 | { |
| 492 | ap_hook_check_authn(authenticate_basic_user, NULL, NULL, APR_HOOK_MIDDLE, |
| 493 | AP_AUTH_INTERNAL_PER_CONF); |
| 494 | ap_hook_fixups(authenticate_basic_fake, NULL, NULL, APR_HOOK_LAST); |
| 495 | ap_hook_note_auth_failure(hook_note_basic_auth_failure, NULL, NULL, |
| 496 | APR_HOOK_MIDDLE); |
| 497 | } |
| 498 | |
| 499 | AP_DECLARE_MODULE(auth_basic) = |
| 500 | { |
nothing calls this directly
no test coverage detected