[Bug 61616] mod_proxy_connect: stall and connection loss on bi-directional traffic

2017-11-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61616

--- Comment #33 from Carsten Wolff  ---
Tests with v8 look good with SSL. Thanks! :-)

-- 
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



[Bug 57448] SSI cannot capture backreferences from regex match in

2017-11-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=57448

m...@danil.mobi changed:

   What|Removed |Added

 CC|m...@danil.mobi |

-- 
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



[Bug 61616] mod_proxy_connect: stall and connection loss on bi-directional traffic

2017-11-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61616

Yann Ylavic  changed:

   What|Removed |Added

  Attachment #35512|0   |1
is obsolete||

--- Comment #32 from Yann Ylavic  ---
Created attachment 35513
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=35513&action=edit
Handle POLLOUT in proxy_connect (v8)

Well, same for the backend connection I guess, hence this v8.

-- 
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



[Bug 61616] mod_proxy_connect: stall and connection loss on bi-directional traffic

2017-11-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=61616

Yann Ylavic  changed:

   What|Removed |Added

  Attachment #35446|0   |1
is obsolete||

--- Comment #31 from Yann Ylavic  ---
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