summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2002-03-07 03:09:30 +0100
committerRyan Bloom <rbb@apache.org>2002-03-07 03:09:30 +0100
commit116497445f4a7420dcf09ba2f4d44da269122040 (patch)
treeb824c40fcd2610b20c694ff4d794a1a2f0f82702 /include
parentXML conversion (diff)
downloadapache2-116497445f4a7420dcf09ba2f4d44da269122040.tar.xz
apache2-116497445f4a7420dcf09ba2f4d44da269122040.zip
Remove the prev pointer from the filter chain. This removes
the complexity of trying to set the filter chain correctly, with the side-effect of forcing us to walk the entire chain whenever we add a filter. Since the filter chains are small, the decrease in complexity is worth it. Reviewed by: Allan Edwards git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93745 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/util_filter.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/util_filter.h b/include/util_filter.h
index 60ea804b94..19d845afb9 100644
--- a/include/util_filter.h
+++ b/include/util_filter.h
@@ -263,9 +263,6 @@ struct ap_filter_t {
/** The next filter in the chain */
ap_filter_t *next;
- /** The previous filter in the chain */
- ap_filter_t *prev;
-
/** The request_rec associated with the current filter. If a sub-request
* adds filters, then the sub-request is the request associated with the
* filter.