Re: module configuration kill

2011-01-12 Thread Peter Janovsky
is it possible to hook into an event fired when the workers are shutdown, if so how? basically i am interested in the cleanup process modules enter when their associated worker threads either crash or are stopped/restarted. From: Nick Kew n...@apache.org To:

Hook end of connection

2011-01-12 Thread Victor Ronin
Hi, I need to write a module, which does something at the beginning and at the end of each connection. I found a hook to handle beginning of connection - ap_run_pre_connection. It's executed quite early, which works for me. And I need to execute some actions prior or just after connection

Re: Hook end of connection

2011-01-12 Thread Nick Kew
On Wed, 12 Jan 2011 14:49:53 -0500 Victor Ronin victor.ro...@gmail.com wrote: Hi, I need to write a module, which does something at the beginning and at the end of each connection. Register a cleanup on the connection pool. -- Nick Kew Available for work, contract or permanent.

Re: Hook end of connection

2011-01-12 Thread Victor Ronin
On 1/12/11 4:13 PM, Andrew Godziuk wrote: I think the logging hook would do the trick too. Do you mean ap_hook_log_transaction? I believe it's executed at the end of request vs. end of connection. Regards, Victor