Re: module configuration kill

2011-01-13 Thread Peter Janovsky
:11:32 PM Subject: Re: module configuration kill On Wed, Jan 12, 2011 at 22:56, Peter Janovsky peterjanov...@yahoo.com wrote: that is definitely of use. thank you. where would i call apr_pool_register_cleanup? originally i thought it would be in register_hooks From your child_init hook

Re: module configuration kill

2011-01-12 Thread Peter Janovsky
To: modules-dev@httpd.apache.org Sent: Mon, January 10, 2011 6:43:42 PM Subject: Re: module configuration kill On Mon, 10 Jan 2011 14:16:43 -0800 (PST) Peter Janovsky peterjanov...@yahoo.com wrote: how do i go about preserving variable state specific to the individual worker? On a restart, the old

module configuration kill

2011-01-10 Thread Peter Janovsky
upon module initialization the registered configuration function is called. the module calls the same configuration function upon stop/restart of the apache httpd worker processes. the problem i'm experiencing is the variables within the configuration struct i've specified for the module are

Re: ap_sub_req_lookup_file vs ap_sub_req_lookup_uri

2010-09-15 Thread Peter Janovsky
apache 2.2.16 From: Ben Noordhuis i...@bnoordhuis.nl To: modules-dev@httpd.apache.org Sent: Wed, September 15, 2010 4:03:40 PM Subject: Re: ap_sub_req_lookup_file vs ap_sub_req_lookup_uri Peter, what version of Apache are you testing this with?

Re: ap_sub_req_lookup_file vs ap_sub_req_lookup_uri

2010-09-14 Thread Peter Janovsky
ben,     thank you for pointing me in the right direction.  the only difference i see between my call(s) to ap_sub_req_lookup_file and the call(s) within mod_include is the inclusion of the filter parameter.  maybe my understanding of filters is incorrect.  are filters only used to modify

Re: ap_sub_req_lookup_file vs ap_sub_req_lookup_uri

2010-09-14 Thread Peter Janovsky
i notice mod_include is implemented as a filter.  is this the preferred way to implment ap_sub_req_lookup_file?  currently i implement ap_sub_req_lookup_file within a handler responsible for calling the appropriate files.  within the handler i only have access to the output_filters,

responsehandler in C

2010-08-18 Thread Peter Janovsky
i currently have a C module which maps the requested URL to its appropriate location(s) based upon internal logic and subsequently uses a subrequest(s) to retrieve the content.  problem is i need to set the last-modified response header based upon the content returned from the subrequest(s).