Returned to single mod_auth_kerb.c file.
[mod_auth_kerb.cvs/.git] / apache2 / hooks.c
1 void kerb_register_hooks(apr_pool_t *p)
2 {
3         ap_hook_check_user_id(kerb_authenticate_user, NULL, NULL, APR_HOOK_MIDDLE);
4         ap_hook_access_checker(kerb_check_user_access, NULL, NULL, APR_HOOK_MIDDLE);
5 }