diff options
author | Stefan Eissing <icing@apache.org> | 2016-11-01 20:40:37 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2016-11-01 20:40:37 +0100 |
commit | 29d168102556c119f62a3f28f5a3695fe93e9a96 (patch) | |
tree | eb8b608b33c0e634f3229a426d4e142a37a2c28d /modules/http2/mod_http2.c | |
parent | Rebuild. (diff) | |
download | apache2-29d168102556c119f62a3f28f5a3695fe93e9a96.tar.xz apache2-29d168102556c119f62a3f28f5a3695fe93e9a96.zip |
mod_http2: proper parsing and forwarding of multiple or unnaounce 1xx responses
mod_proxy_http2: improved robustness when main connection gets aborted
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1767553 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/mod_http2.c')
-rw-r--r-- | modules/http2/mod_http2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/http2/mod_http2.c b/modules/http2/mod_http2.c index 854e677a34..7452cd7c2b 100644 --- a/modules/http2/mod_http2.c +++ b/modules/http2/mod_http2.c @@ -166,9 +166,10 @@ static apr_status_t http2_req_engine_pull(h2_req_engine *ngn, return h2_mplx_req_engine_pull(ngn, block, capacity, pr); } -static void http2_req_engine_done(h2_req_engine *ngn, conn_rec *r_conn) +static void http2_req_engine_done(h2_req_engine *ngn, conn_rec *r_conn, + apr_status_t status) { - h2_mplx_req_engine_done(ngn, r_conn); + h2_mplx_req_engine_done(ngn, r_conn, status); } /* Runs once per created child process. Perform any process |