You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2005/01/10 17:10:46 UTC

DO NOT REPLY [Bug 32443] - mod_proxy will keep alive to streaming server after user shutdown connection

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=32443>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32443





------- Additional Comments From janne@abako.fi  2005-01-10 17:10 -------
I had the same problem and I did some debugging.

This happends because ap_pass_brigade returns always APR_SUCCESS on
ap_proxy_http_process_response (from server/core.c).

here is a quick patch for this:

change line
                    if (ap_pass_brigade(r->output_filters, bb) != APR_SUCCESS) {

on file modules/proxy/proxy_http.c to:

                    if (ap_pass_brigade(r->output_filters, bb) != APR_SUCCESS ||
c->aborted) {




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org