Re: httpd filters to record the client network time

2010-10-02 Thread Nick Kew
On Sat, 2 Oct 2010 08:11:33 -0700 (PDT) alin vasile wrote: > I would like to write an httpd module with output filters to record when a > client sends the first byte of an HTTP request and when send the last. Your problem is that you're trying to use filters at a level in the chain where there

Re: Filters before mod_include

2010-10-02 Thread Nick Kew
On Sat, 2 Oct 2010 07:44:47 -0700 (PDT) Travis Bassetti wrote: > Is it possible to register an output filter that processes the request before > mod_include? I'm trying to build a filter which inserts extra markup around > each "#include virtual" SSI directive. I can only seem to register a

httpd filters to record the client network time

2010-10-02 Thread alin vasile
I would like to write an httpd module with output filters to record when a client sends the first byte of an HTTP request and when send the last. After looking a while through the existing filters in the httpd source code I was able to accomplish that but unfortunately it doesn't work for keep-

Filters before mod_include

2010-10-02 Thread Travis Bassetti
Is it possible to register an output filter that processes the request before mod_include? I'm trying to build a filter which inserts extra markup around each "#include virtual" SSI directive. I can only seem to register an output filter after mod_include as mod_include declares APR_HOOK_REA