* 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_...
* 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),
* 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_...