From: Eric Covener Date: Tue, 27 Aug 2013 20:46:16 +0000 (+0000) Subject: Mention how "satisfy any" affects AAA hooks run after access_checker X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65bb299adeb891a2d00dd0f5555698747dfc6d47;p=thirdparty%2Fapache%2Fhttpd.git Mention how "satisfy any" affects AAA hooks run after access_checker (access_checker_ex, check_user_id, auth_checker) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1517979 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_request.h b/include/http_request.h index d108392982d..2317826f3a0 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -378,6 +378,7 @@ AP_DECLARE_HOOK(int,map_to_storage,(request_rec *r)) * by the 'Require' directive). It runs after the access_checker hook, and * before the auth_checker hook. This hook should be registered with * ap_hook_check_authn(). + * If "Satisfy any" is in effect, this hook may be skipped. * * @param r The current request * @return OK, DECLINED, or HTTP_... @@ -424,6 +425,7 @@ AP_DECLARE_HOOK(int,access_checker,(request_rec *r)) * authentication for this resource. It runs *before* a user is authenticated, * but after the access_checker hook. * This hook should be registered with ap_hook_check_access_ex(). + * If "Satisfy any" is in effect, this hook may be skipped. * * @param r the current request * @return OK (allow acces), DECLINED (let later modules decide), @@ -440,6 +442,7 @@ AP_DECLARE_HOOK(int,access_checker_ex,(request_rec *r)) * it will *only* be called if Apache determines that access control has * been applied to this resource (through a 'Require' directive). This * hook should be registered with ap_hook_check_authz(). + * If "Satisfy any" is in effect, this hook may be skipped. * * @param r the current request * @return OK, DECLINED, or HTTP_...