diff options
author | Ryan Bloom <rbb@apache.org> | 2002-02-05 23:18:49 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2002-02-05 23:18:49 +0100 |
commit | 862f407872af4dae164f9e48c140b2c21f00d5a7 (patch) | |
tree | 1d68c9b6eac7e70deac11e79787fc62e3fd06d04 /server/mpm/experimental/perchild/perchild.c | |
parent | Last week it was spring, this week it's winter. What's wrong with this (diff) | |
download | apache2-862f407872af4dae164f9e48c140b2c21f00d5a7.tar.xz apache2-862f407872af4dae164f9e48c140b2c21f00d5a7.zip |
Remove the install_transport_filters hook. The same function can be
acheived with the pre_connection hook. I have added the socket to the
pre_connection phase to make this possible.
Reviewed by: Bill Stoddard
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93259 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/experimental/perchild/perchild.c')
-rw-r--r-- | server/mpm/experimental/perchild/perchild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/experimental/perchild/perchild.c b/server/mpm/experimental/perchild/perchild.c index d0dee44dce..225b27332c 100644 --- a/server/mpm/experimental/perchild/perchild.c +++ b/server/mpm/experimental/perchild/perchild.c @@ -1726,7 +1726,7 @@ static apr_status_t perchild_buffer(ap_filter_t *f, apr_bucket_brigade *b, return APR_SUCCESS; } -static int perchild_pre_connection(conn_rec *c) +static int perchild_pre_connection(conn_rec *c, void *csd) { ap_add_input_filter("PERCHILD_BUFFER", NULL, NULL, c); return OK; |