New module added: mod_proxy_filter_xff

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  peterpramb
Module name: mod_proxy_filter_xff
Tags:proxying,filters
License: MIT license
Homepage:http://www.pramberger.at/peter/software/projects/filterxff/
Caption: An Apache filter module for XFF headers




New module added: mod_mruby

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  matsumoto_r
Module name: mod_mruby
Tags:
misc,proxying,vc,scripting,filters,generators,mapping,logging,security
License: MIT license
Homepage:https://github.com/matsumoto-r/mod_mruby
Caption: mod_mruby - to provide an alternative to mod_lua.




New module added: mod_process_security

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  matsumoto_r
Module name: mod_process_security
Tags:security
License: MIT license
Homepage:https://github.com/matsumoto-r/mod_process_security
Caption: This module is a suEXEC module for CGI and DSO. Improvement of 
mod_ruid2(vulnerability) and mod_suexec(performance).




New module added: mod_request_dumper

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  matsumoto_r
Module name: mod_request_dumper
Tags:logging
License: MIT license
Homepage:https://github.com/matsumoto-r/mod_request_dumper
Caption: output request_rec, server_rec, conn_rec on earch hook phases.




New module added: mod_load_monitor

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  matsumoto_r
Module name: mod_load_monitor
Tags:filters,logging
License: MIT license
Homepage:https://github.com/matsumoto-r/mod_load_monitor
Caption: mod_load_monitor - exec command over threshold of load average 




New module added: mod_vlimit

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  matsumoto_r
Module name: mod_vlimit
Tags:misc
License: MIT license
Homepage:https://github.com/matsumoto-r/mod_vlimit
Caption: Control the number of references from the same IP address to file 
access or the number of references from the same file name to file access




New module added: mod_rchecker

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  matsumoto_r
Module name: mod_rchecker
Tags:logging
License: MIT license
Homepage:https://github.com/matsumoto-r/mod_rchecker
Caption: Process Resource Logging Module




New module added: mod_lalimit

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  matsumoto_r
Module name: mod_lalimit
Tags:misc
License: MIT license
Homepage:https://github.com/matsumoto-r/mod_lalimit
Caption: Control the number of processes in the system run queue averaged 
over the last 1 minutes.




New module added: mod_falcon

2013-02-04 Thread modules.apache.org
Hello,

A new module has been created and is awaiting approval. If you are a 
modules.apache.org administrator, 
please check whether this module passes the requirements of an httpd module and 
approve it if so.

Author:  jonnymind
Module name: mod_falcon
Tags:scripting
License: Apache License 2.0
Homepage:http://www.falconpl.org
Caption: Interpreter for the Falcon Programming Langauge




Re: how to do something in a mod when apache is shutting down?

2013-02-04 Thread Nick Kew

On 5 Feb 2013, at 02:29, chary wrote:

 I'm writing a mod for apache, and I need some help.
 
 how to do something in a mod when apache is shutting down? 
 
 What kind of hooks could be used?

Register your function as a cleanup on the process pool.

-- 
Nick Kew


re: how to do something in a mod when apache is shutting down?

2013-02-04 Thread chary
Thanks for your help ,Nick.
Do you mean this function ? 
void apr_pool_cleanup_register  (   apr_pool_t *p,
const void *data,
apr_status_t(*)(void *) plain_cleanup,
apr_status_t(*)(void *) child_cleanup
)   

Chary 

On 5 Feb 2013, at 02:29, chary wrote:

 I'm writing a mod for apache, and I need some help.
 
 how to do something in a mod when apache is shutting down? 
 
 What kind of hooks could be used?

Register your function as a cleanup on the process pool.

-- 
Nick Kew