add dirwalk_stat hook, for use by mpm-itk

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1388447 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2012-09-21 11:59:06 +00:00
parent dcc65915d8
commit 9105fe3d46
5 changed files with 30 additions and 9 deletions

View File

@ -538,6 +538,15 @@ AP_DECLARE_HOOK(void,insert_filter,(request_rec *r))
*/
AP_DECLARE_HOOK(int,post_perdir_config,(request_rec *r))
/**
* This hook allows modules to handle/emulate the apr_stat() calls
* needed for directory walk.
* @param r The current request
* @return apr_status_t or AP_DECLINED (let later modules decide)
* @ingroup hooks
*/
AP_DECLARE_HOOK(apr_status_t,dirwalk_stat,(apr_finfo_t *finfo, request_rec *r, apr_int32_t wanted))
AP_DECLARE(int) ap_location_walk(request_rec *r);
AP_DECLARE(int) ap_directory_walk(request_rec *r);
AP_DECLARE(int) ap_file_walk(request_rec *r);