From 83aea4aac7e4ebd9d9e6d0dca402c7d2ddb0aa9c Mon Sep 17 00:00:00 2001 From: Takashi Sato Date: Wed, 25 Jun 2014 12:52:09 +0000 Subject: [PATCH] Async mod_proxy_wstunnel: Resume a client connection from SUSPENDED state to avoid the connection remain suspended. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1605376 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_wstunnel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/proxy/mod_proxy_wstunnel.c b/modules/proxy/mod_proxy_wstunnel.c index 4926192d35..1e810d7adb 100644 --- a/modules/proxy/mod_proxy_wstunnel.c +++ b/modules/proxy/mod_proxy_wstunnel.c @@ -147,6 +147,7 @@ static void proxy_wstunnel_finish(ws_baton_t *baton) { ap_finalize_request_protocol(baton->r); ap_lingering_close(baton->r->connection); apr_socket_close(baton->client_soc); + ap_mpm_resume_suspended(baton->r->connection); ap_process_request_after_handler(baton->r); /* don't touch baton or r after here */ } -- 2.40.0