Re: Tracking sent responses

2015-11-06 Thread Sorin Manolache
On 2015-11-06 15:12, Julien FROMENT wrote: Hello, We would like to use Apache HTTP Server to keep track of exactly what part of the response was sent over a socket. Apache could call an API asynchronously with the number of bytes sent over the socket for a given request. Here is the pseudo

Re: Tracking sent responses

2015-11-06 Thread Nick Kew
On Fri, 6 Nov 2015 09:12:40 -0500 Julien FROMENT wrote: > Here is the pseudo code: > > -- Client send a request > > -- Apache processes the request and send it to the backend server > > ... > > -- The backend server returns the response > > -- Apache

RE: Tracking sent responses

2015-11-06 Thread Julien FROMENT
Thanks for the reply Sorin. Does the number of bytes sent written by the log take into account the fact that a browser could cancel the request halfway through? For example, if a client request a 100MB file, and cancel the transfer after 50MB, will the log report 50MB? Julien -Original

Re: Tracking sent responses

2015-11-06 Thread Eric Covener
On Fri, Nov 6, 2015 at 11:18 AM, Julien FROMENT wrote: > Does the number of bytes sent written by the log take into account the fact > that a browser could cancel the request halfway through? The data added by mod_logio does take that into account. It's not 100%

Re: trailer

2015-11-06 Thread Daniil Iaitskov
Hi, On Thu, Nov 5, 2015 at 2:15 PM, Eric Covener wrote: > On Thu, Nov 5, 2015 at 8:04 AM, Stefan Eissing > wrote: > > Looking at the source regarding trailer handling, am I correct in seeing: > > > > - request trailer supported with option to

Moderations for modules.apache.org

2015-11-06 Thread Graham Leggett
Hi all, I've had a module waiting to be approved at modules.apache.org for a while, anyone know who the moderator is? Regards, Graham --

Re: Moderations for modules.apache.org

2015-11-06 Thread Daniel Gruno
On 11/06/2015 05:53 PM, Graham Leggett wrote: > Hi all, > > I've had a module waiting to be approved at modules.apache.org for a while, > anyone know who the moderator is? > > Regards, > Graham > -- > Hi Graham, I'm sorry to say modules.apache.org is so bot/spam infested now, that it's

Tracking sent responses

2015-11-06 Thread Julien FROMENT
Hello, We would like to use Apache HTTP Server to keep track of exactly what part of the response was sent over a socket. Apache could call an API asynchronously with the number of bytes sent over the socket for a given request. Here is the pseudo code: -- Client send a request --