]> granicus.if.org Git - apache/commitdiff
Mention how "satisfy any" affects AAA hooks run after access_checker
authorEric Covener <covener@apache.org>
Tue, 27 Aug 2013 20:46:16 +0000 (20:46 +0000)
committerEric Covener <covener@apache.org>
Tue, 27 Aug 2013 20:46:16 +0000 (20:46 +0000)
(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

include/http_request.h

index d108392982dcaabb371738d205275d4225051882..2317826f3a0beb483108bc6c42ae0a152c737555 100644 (file)
@@ -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_...