mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
mod_apparmor: for apache 2.4, use new access control hook
Use ap_hook_check_access_ex() instead of ap_hook_access_checker() for apache 2.4; see http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html#http_request Signed-off-by: Steve Beattie <steve@nxnw.org> Acked-by: Seth Arnold <seth.arnold@canonical.com>
This commit is contained in:
parent
afe682c65c
commit
b01c8f2a7a
1 changed files with 8 additions and 0 deletions
|
@ -355,7 +355,15 @@ register_hooks (apr_pool_t *p)
|
|||
{
|
||||
ap_hook_post_config (immunix_init, NULL, NULL, APR_HOOK_MIDDLE);
|
||||
ap_hook_child_init (immunix_child_init, NULL, NULL, APR_HOOK_MIDDLE);
|
||||
|
||||
#if AP_SERVER_MAJORVERSION_NUMBER == 2 && AP_SERVER_MINORVERSION_NUMBER < 3
|
||||
/* Compatibility with apache 2.2 */
|
||||
ap_hook_access_checker(immunix_enter_hat, NULL, NULL, APR_HOOK_FIRST);
|
||||
#else
|
||||
/* apache 2.4 mod_authz hook */
|
||||
ap_hook_check_access_ex(immunix_enter_hat, NULL, NULL, APR_HOOK_FIRST, AP_AUTH_INTERNAL_PER_CONF);
|
||||
#endif
|
||||
|
||||
/* ap_hook_post_read_request(immunix_enter_hat, NULL, NULL, APR_HOOK_FIRST); */
|
||||
ap_hook_log_transaction(immunix_exit_hat, NULL, NULL, APR_HOOK_LAST);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue