]> granicus.if.org Git - apache/commit
Connection oriented filters are now stored in the conn_rec instead of the
authorRyan Bloom <rbb@apache.org>
Wed, 4 Oct 2000 23:19:33 +0000 (23:19 +0000)
committerRyan Bloom <rbb@apache.org>
Wed, 4 Oct 2000 23:19:33 +0000 (23:19 +0000)
commit8b56ba850ac12304e96535fadf52539d97afb87c
treece9bd637376642dfd12e220da0a64522ae1e347b
parent73be8aa19993d0859a847591e961e24fb61aa56c
Connection oriented filters are now stored in the conn_rec instead of the
request_rec.  This means that a conn_rec must be supplied when calling
ap_add_filter.  The reason for this change is that we need to be able to
add the core_filter (whether or SSL or not) before we try to read the
request.  This way, if a request fails, we can actually send the error
page back to the client.  With this change, we add the core filter to the
conn_rec during the pre-connection phase.
Submitted by: Ryan Bloom, Jeff Trawick, and Greg Ames

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86392 13f79535-47bb-0310-9956-ffa450edef68
include/httpd.h
include/util_filter.h
modules/http/http_core.c
modules/http/http_protocol.c
server/connection.c
server/util_filter.c