Re: mysql auth module

2008-02-07 Thread Joe Lewis
Seth Cherney wrote: OK, I signed onto this list about 4 months ago, and have never seen anything remotely close to my low level of skill posed as a Q on the list. I have been trying to rewrite a mysql login module to include more fields to check / update. Certain parts are quite easy, but,

Re: mod_proxy timeouts in the 2.0

2008-02-07 Thread jean-frederic clere
Chris H. wrote: Quoting Jim Jagielski [EMAIL PROTECTED]: On Feb 5, 2008, at 2:52 PM, Ronald Park wrote: Attached is my patch to 2.0.63 to the proxy_http.c file in modules/proxy. I didn't see any attached patch... :/ Without the patch the whole discussion is useless ;-( In any case,

tcp_get_info()....

2008-02-07 Thread Niko Wilfritz Sianipar Sianipar
Can I use tcp_get_info() function from Linux C library in my Apache code to get information about the TCP connection? I need it to estimate the transfer time of last packet sent in my Apache code? Is Apache can do that?? Please response this question...

Re: tcp_get_info()....

2008-02-07 Thread Colm MacCarthaigh
On Thu, Feb 07, 2008 at 03:38:38PM +0700, Niko Wilfritz Sianipar Sianipar wrote: Can I use tcp_get_info() function from Linux C library in my Apache code to get information about the TCP connection? Yep, you can, though obviously it will be completely unportable. I need it to estimate the

Re: tcp_get_info()....

2008-02-07 Thread Dirk-Willem van Gulik
On Feb 7, 2008, at 12:25 PM, Colm MacCarthaigh wrote: On Thu, Feb 07, 2008 at 03:38:38PM +0700, Niko Wilfritz Sianipar Sianipar wrote: Can I use tcp_get_info() function from Linux C library in my Apache code to get information about the TCP connection? Yep, you can, though obviously it

Re: tcp_get_info()....

2008-02-07 Thread Colm MacCarthaigh
On Thu, Feb 07, 2008 at 12:39:14PM +0100, Dirk-Willem van Gulik wrote: Have a look at the ntp protocol - it is fairly effective at this - and I would not rule out that you'd be able to do something similar (abeit less accurate) on a keep-alive connection. NTP does it via phase-lock loop,

Re: tcp_get_info()....

2008-02-07 Thread Dirk-Willem van Gulik
On Feb 7, 2008, at 2:28 PM, Colm MacCarthaigh wrote: On Thu, Feb 07, 2008 at 12:39:14PM +0100, Dirk-Willem van Gulik wrote: Have a look at the ntp protocol - it is fairly effective at this - and I would not rule out that you'd be able to do something similar (abeit less accurate) on a

Re: mod_proxy timeouts in the 2.0

2008-02-07 Thread Jim Jagielski
On Feb 6, 2008, at 5:04 PM, Chris H. wrote: Quoting Jim Jagielski [EMAIL PROTECTED]: On Feb 5, 2008, at 2:52 PM, Ronald Park wrote: Attached is my patch to 2.0.63 to the proxy_http.c file in modules/proxy. I didn't see any attached patch... :/ In any case, the normal process is patch

Re: sending provisional response codes from a filter

2008-02-07 Thread Charles Fry
I've made some progress in ruling out some false alarms that revelaed themselves initially. Specifically, the 103 I thought I was sending was just my addition of 103 to http_protocol.c working improperly (apparently even after httpd.h was updated, but nevermind that for now). In any case, my

RE: Pool child

2008-02-07 Thread Peter Belau
In my understanding r-pool lasts the duration of the request. As soon as the request is finished the memory should be marked for cleanup. -Original Message- From: Marco Spinetti [mailto:[EMAIL PROTECTED] Sent: Thu 2/7/2008 6:21 AM To: [EMAIL PROTECTED] Subject: Pool child I have a

Balasan: Re: tcp_get_info()....

2008-02-07 Thread Niko Wilfritz Sianipar Sianipar
Thanks for your responses, but what I want to do with the transfer time information (which I hope can be known from tcp_get_info) is to give priority to the request of the fastest connection first (which can be calculated with size of file/transfer time). I use Apache code to give the priority