Re: [Patch] Async write completion for the full connection filter stack

2015-10-04 Thread Graham Leggett
On 28 Sep 2015, at 2:11 PM, Jim Jagielski wrote: > This is super cool magic mojo. The next bit of this is the ability to safely suspend a filter. A suspended filter is a filter that is waiting for some external event, a callback of some kind, some timer that it might have

Re: Expression Parser: search and replace with s/PATTERN/REPLACEMENT/FLAGS

2015-10-04 Thread Stefan Fritsch
On Thursday 01 October 2015 13:55:40, Rainer Jung wrote: > Am 01.10.2015 um 12:31 schrieb Graham Leggett: > > On 01 Oct 2015, at 12:26 PM, Rainer Jung wrote: > >> Since it gets more common to use the expression parser for string > >> operations and not only for boolean

Re: Expression Parser: search and replace with s/PATTERN/REPLACEMENT/FLAGS

2015-10-04 Thread Graham Leggett
On 04 Oct 2015, at 12:46 PM, Rainer Jung wrote: >> But it must not be too complicated. We don't want an unreadable mess >> like the sh/bash string manipulation functions. +1. > Yes, I agree. When starting to think closer, I noticed that the string mode > currently

Re: SSLUseStapling: ssl handshake fails until httpd restart

2015-10-04 Thread Tim Bannister
On 4 Oct 2015, at 11:38, Kaspar Brand wrote: > > As far as the mod_ssl side is related, it seems to me that for the > "SSLStaplingReturnResponderErrors off" case, we should make sure that we only > staple responses with status "good" (i.e. OCSP_RESPONSE_STATUS_SUCCESSFUL and >

Re: Expression Parser: search and replace with s/PATTERN/REPLACEMENT/FLAGS

2015-10-04 Thread Rainer Jung
Am 04.10.2015 um 10:23 schrieb Stefan Fritsch: On Thursday 01 October 2015 13:55:40, Rainer Jung wrote: Am 01.10.2015 um 12:31 schrieb Graham Leggett: On 01 Oct 2015, at 12:26 PM, Rainer Jung wrote: Since it gets more common to use the expression parser for string

Re: Expression Parser: search and replace with s/PATTERN/REPLACEMENT/FLAGS

2015-10-04 Thread Graham Leggett
On 04 Oct 2015, at 12:51 PM, Graham Leggett wrote: > How about a regex function? > > The single argument could be “s/PATTERN/REPLACEMENT/FLAGS”. Or more specifically: %{regex:%{REMOTE_USER} =~ /([^@]*)@.*/$1/} Or perhaps to avoid the issue of having to escape the =~

Re: SSLUseStapling: ssl handshake fails until httpd restart

2015-10-04 Thread Kaspar Brand
On 03.10.2015 12:07, Reindl Harald wrote: > Am 03.10.2015 um 11:16 schrieb Kaspar Brand: >> What do you have security.OCSP.require set to? If it's "true" (a setting >> no longer configurable through the UI, BTW, see >> https://bugzilla.mozilla.org/show_bug.cgi?id=1034360), then Firefox >> shows a

Bug report for Apache httpd-2 [2015/10/04]

2015-10-04 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Re: svn commit: r1706637 - /httpd/httpd/trunk/modules/http2/config.m4

2015-10-04 Thread Daniel Gruno
On 10/04/2015 04:22 PM, Jeff Trawick wrote: > > This is CTR in the 2.4.x branch, right? (i.e., can just commit it?) > Yeah, it was informally decided (last week) to CTR the http2 stuff. With regards, Daniel.

Re: svn commit: r1706637 - /httpd/httpd/trunk/modules/http2/config.m4

2015-10-04 Thread Jeff Trawick
On Sat, Oct 3, 2015 at 5:32 PM, wrote: > Author: trawick > Date: Sat Oct 3 21:32:56 2015 > New Revision: 1706637 > > URL: http://svn.apache.org/viewvc?rev=1706637=rev > Log: > Follow-up to r1690248: > > Fix logic to limit exported symbols in DSO form of mod_http2. > >

Re: [Patch] Async write completion for the full connection filter stack

2015-10-04 Thread Tim Bannister
On 4 Oct 2015, at 12:40, Graham Leggett wrote: > > The next bit of this is the ability to safely suspend a filter. … > I am thinking of the sharp end of mod_proxy_httpd (and friends) becoming an > async filter that suspends or not based on whether data is available on the >