https://bz.apache.org/bugzilla/show_bug.cgi?id=61616
Yann Ylavic <ylavic....@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #35446|0 |1 is obsolete| | --- Comment #31 from Yann Ylavic <ylavic....@gmail.com> --- Created attachment 35512 --> https://bz.apache.org/bugzilla/attachment.cgi?id=35512&action=edit Handle POLLOUT in proxy_connect (v7) Good catch, it makes no sense to try to coalesce TCP packets! This v7 simply removes the mod_ssl coalescing filter from the chain before entering the mod_proxy_connect's loop. The change between v6 and v7 lokks like this: + /* we are now acting as a tunnel - the input/output filter stacks should +- * not contain any non-connection filters. ++ * not contain any non-connection or coalescing filters. + */ ++ ap_remove_output_filter_byhandle(c->output_filters, ++ "SSL/TLS Coalescing Filter"); + r->output_filters = c->output_filters; We'll probably want to use a helper from mod_ssl for this in the final patch, and avoid the magic name, but for now it should work.. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org For additional commands, e-mail: bugs-h...@httpd.apache.org