You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2013/08/27 22:46:16 UTC

svn commit: r1517979 - /httpd/httpd/trunk/include/http_request.h

Author: covener
Date: Tue Aug 27 20:46:16 2013
New Revision: 1517979

URL: http://svn.apache.org/r1517979
Log:
Mention how "satisfy any" affects AAA hooks run after access_checker 
(access_checker_ex, check_user_id, auth_checker)


Modified:
    httpd/httpd/trunk/include/http_request.h

Modified: httpd/httpd/trunk/include/http_request.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_request.h?rev=1517979&r1=1517978&r2=1517979&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_request.h (original)
+++ httpd/httpd/trunk/include/http_request.h Tue Aug 27 20:46:16 2013
@@ -378,6 +378,7 @@ AP_DECLARE_HOOK(int,map_to_storage,(requ
  * 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,(requ
  * 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,(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_...