On Wed, Jun 23, 2021 at 8:43 PM Mark Thomas wrote:
>
> On 07/05/2021 09:33, Rémy Maucherat wrote:
> > On Wed, Apr 28, 2021 at 10:45 AM Rémy Maucherat wrote:
> >
> >> On Wed, Apr 28, 2021 at 9:07 AM Mark Thomas wrote:
> >>
> >>> I'm wondering if there is merit in a Valve-like mechanism for Coyote
On 07/05/2021 09:33, Rémy Maucherat wrote:
On Wed, Apr 28, 2021 at 10:45 AM Rémy Maucherat wrote:
On Wed, Apr 28, 2021 at 9:07 AM Mark Thomas wrote:
I'm wondering if there is merit in a Valve-like mechanism for Coyote.
Name TBD but would look something like:
- callbacks
- after request
On Wed, Apr 28, 2021 at 10:45 AM Rémy Maucherat wrote:
> On Wed, Apr 28, 2021 at 9:07 AM Mark Thomas wrote:
>
>> I'm wondering if there is merit in a Valve-like mechanism for Coyote.
>> Name TBD but would look something like:
>> - callbacks
>>- after request headers are parsed / before the r
On Wed, Apr 28, 2021 at 9:07 AM Mark Thomas wrote:
> I'm wondering if there is merit in a Valve-like mechanism for Coyote.
> Name TBD but would look something like:
> - callbacks
>- after request headers are parsed / before the request is prepared
>- after the request is prepared
>- b
On 27/04/2021 22:14, Rémy Maucherat wrote:
I remember after doing the rewrite valve I got asked a bit about
mod_headers because "why not". However, now I recall I found out it would
be far less practical. So I very quickly moved on since it was also less
useful than rewrite. I would still prob
On Tue, Apr 27, 2021 at 7:05 PM Mark Thomas wrote:
> Hi all,
>
> I've started to look at this and I am struggling to see a way to
> implement something that looks like mod_headers as a Filter.
>
> Request headers are fairly simple. The process looks something like:
> a) take a copy of all the he
Isnt the response buffer size giving a sufficient hint or callback like
(dont rewrite before it is reached or body starts to be read)? Guess filter
must force some size if not set but sounds like something to check, no?
Le mar. 27 avr. 2021 à 21:32, Raymond Augé
a écrit :
> Couldn't you add a ca
Couldn't you add a callback/hook to commit() impl and trigger the rules
during that callback/hook?
But with that the filter is merely a shell for pushing rules into that
callback/hook registry.
- Ray
On Tue, Apr 27, 2021 at 1:04 PM Mark Thomas wrote:
> Hi all,
>
> I've started to look at this