Cleanup when server is stopped vs reconfigured

2016-03-28 Thread Tony Abo
I have a DSO module which establishes a custom handler. The handle fires up external process which perform the work for certain requests. Those processes contain a lot of state information for user application sessions. We want to have some cleanup code that will shutdown those processes

RE: Close HTTP connection callback/hook

2012-10-21 Thread Tony Abo
From: Evgeny Shvidky [mailto:evg...@skyfence.com] Sent: Wednesday, 17 October 2012 12:50 AM To: modules-dev@httpd.apache.org Subject: Close HTTP connection callback/hook Hi, I am implementing a new module on C. I need to perform some functionality when a user closes a HTTP connection

RE: mod_proxy_fdpass + httpd-2.2.19

2011-08-03 Thread Tony Abo
From: Henrik Strand [mailto:henrik.str...@axis.com] Sent: Wednesday, 3 August 2011 5:10 PM To: modules-dev@httpd.apache.org Subject: mod_proxy_fdpass + httpd-2.2.19 Hi, I'm trying to back-port Apache Module mod_proxy_fdpass to httpd-2.2.19, and building from source, but are getting the

RE: How to test if request has been aborted

2011-07-29 Thread Tony Abo
On Fri, Jul 29, 2011 at 02:35, Tony Abo t...@hitech.com wrote:  I need to cut the processing short if the user decides to press the stop button on the browser. I cant seem to figure out how to test for that condition from inside the handler. Can anyone help me? Thanks in advance

How to test if request has been aborted

2011-07-28 Thread Tony Abo
I am working on a custom request handler that works with Apache 2.x. There are times that the request may take a considerable amount of time to process. I need to cut the processing short if the user decides to press the stop button on the browser. I cant seem to figure out how to test for that

Re: How to test if request has been aborted

2011-07-28 Thread Tony Abo
Sent from my iPhone On 28/07/2011, at 7:18 PM, Tom Evans tevans...@googlemail.com wrote: On Thu, Jul 28, 2011 at 7:26 AM, ... I need to cut the processing short if the user decides to press the stop button on the browser. I cant seem to figure out how to test for that condition from

RE: How to test if request has been aborted

2011-07-28 Thread Tony Abo
I need to cut the processing short if the user decides to press the stop button on the browser. I cant seem to figure out how to test for that condition from inside the handler. Can anyone help me? Thanks in advance, Tony r-connection-aborted Cheers Tom Thanks Tom Will