summaryrefslogtreecommitdiffstats
path: root/modules/http2/mod_http2.c
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2016-03-08 15:22:34 +0100
committerStefan Eissing <icing@apache.org>2016-03-08 15:22:34 +0100
commit28777fa0915cc667dc020c75180b956fbf61e7a6 (patch)
tree0cce6ab5e2976f43fb675793b232c8fa34b77878 /modules/http2/mod_http2.c
parentDocumentation rebuild (diff)
downloadapache2-28777fa0915cc667dc020c75180b956fbf61e7a6.tar.xz
apache2-28777fa0915cc667dc020c75180b956fbf61e7a6.zip
mod_proxy_http2: stability improvements
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1734097 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/mod_http2.c')
-rw-r--r--modules/http2/mod_http2.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/http2/mod_http2.c b/modules/http2/mod_http2.c
index 5216523022..c3b01733a9 100644
--- a/modules/http2/mod_http2.c
+++ b/modules/http2/mod_http2.c
@@ -148,12 +148,6 @@ static void http2_req_engine_done(h2_req_engine *ngn, conn_rec *r_conn)
h2_mplx_req_engine_done(ngn, r_conn);
}
-static void http2_req_engine_exit(h2_req_engine *ngn)
-{
- h2_mplx_req_engine_exit(ngn);
-}
-
-
/* Runs once per created child process. Perform any process
* related initionalization here.
*/
@@ -179,7 +173,6 @@ static void h2_hooks(apr_pool_t *pool)
APR_REGISTER_OPTIONAL_FN(http2_req_engine_push);
APR_REGISTER_OPTIONAL_FN(http2_req_engine_pull);
APR_REGISTER_OPTIONAL_FN(http2_req_engine_done);
- APR_REGISTER_OPTIONAL_FN(http2_req_engine_exit);
ap_log_perror(APLOG_MARK, APLOG_TRACE1, 0, pool, "installing hooks");