summaryrefslogtreecommitdiff
path: root/include/http_request.h
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-01-17 11:02:38 +0000
committerStefan Fritsch <sf@apache.org>2011-01-17 11:02:38 +0000
commita38d3c9e232f9b28d7136e032b6972fcaf4545d7 (patch)
treecd46820b1cac5c3c23ef16bd90e6a68a224fc9e8 /include/http_request.h
parent90e46c5792c05ae0f7fe6a9faeff9bc5f609e27a (diff)
downloadhttpd-a38d3c9e232f9b28d7136e032b6972fcaf4545d7.tar.gz
Merge the <If> sections in a separate step ap_if_walk, after ap_location_walk.
This makes <If> apply to all requests, not only to file base requests and it allows to use <If> inside <Directory>, <Location>, and <Files> sections. The merging of <If> sections always happens after the merging of <Location> sections, even if the <If> section is embedded inside a <Directory> or <Files> section. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1059867 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_request.h')
-rw-r--r--include/http_request.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/http_request.h b/include/http_request.h
index 5f14ceb776..5c607f7f7c 100644
--- a/include/http_request.h
+++ b/include/http_request.h
@@ -531,6 +531,7 @@ AP_DECLARE_HOOK(void,insert_filter,(request_rec *r))
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);
+AP_DECLARE(int) ap_if_walk(request_rec *r);
/** End Of REQUEST (EOR) bucket */
AP_DECLARE_DATA extern const apr_bucket_type_t ap_bucket_type_eor;