1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

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
This commit is contained in:
Takashi Sato
2014-06-25 12:52:09 +00:00
parent ffc5802356
commit 83aea4aac7

View File

@@ -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 */
}