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/08 19:06:48 UTC

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

Author: covener
Date: Thu Aug  8 17:06:48 2013
New Revision: 1511878

URL: http://svn.apache.org/r1511878
Log:
access_checker_ex runs immediately after access_checker, 
which both must run well before auth_checker. No other contrast is possible so
assuming this doc is just a typo.

access_checker vs. access_checker_ex is discussed here:

    Subject: svn commit: r964156 - in /httpd/httpd/trunk: docs/manual/developer/ include/ modules/aaa/ server/
    http://svn.apache.org/viewvc?rev=964156&view=rev


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=1511878&r1=1511877&r2=1511878&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_request.h (original)
+++ httpd/httpd/trunk/include/http_request.h Thu Aug  8 17:06:48 2013
@@ -422,7 +422,7 @@ AP_DECLARE_HOOK(int,access_checker,(requ
 /**
  * This hook is used to apply additional access control and/or bypass
  * authentication for this resource. It runs *before* a user is authenticated,
- * but after the auth_checker hook.
+ * but after the access_checker hook.
  * This hook should be registered with ap_hook_check_access_ex().
  *
  * @param r the current request