Re: response handling inside ap_hook_create_request cb function

2013-09-27 Thread Pon Umapathy Kailash S
Thanks for your response, Robert. This sounds workable(with some modifications for my use-case). Can you please clarify regarding a few of these points? These are converted to HTTP and then passed on, the HTTP response is converted to the binary format and sent back. - To convert from the

Re: response handling inside ap_hook_create_request cb function

2013-09-27 Thread Robert Mitschke
I am using input filters to convert the binary input messages to http. This is done using connection level filters. By that approach I can use all of the remaining apache infrastructure after the input filters. For example I can use mod_proxy to forward requests from my clients once they are

Re: response handling inside ap_hook_create_request cb function

2013-09-27 Thread Pon Umapathy Kailash S
Thanks a lot, Robert. This gives me something to work on/experiment for now. I'll probably get back later with more questions, if needed. :) Regards, Umapathy On Fri, Sep 27, 2013 at 2:57 PM, Robert Mitschke robert.mitsc...@ebeesmarttechnologies.de wrote: I am using input filters to convert

Re: response handling inside ap_hook_create_request cb function

2013-09-27 Thread Sorin Manolache
On 2013-09-27 11:11, Pon Umapathy Kailash S wrote: Thanks for your response, Sorin. My concern in this approach is that - it would require one worker thread to be held up for as long as this connection is open(and this might be long + the number of clients can be higher than the worker threads

Re: response handling inside ap_hook_create_request cb function

2013-09-27 Thread Pon Umapathy Kailash S
Thanks Sorin. I'll check this up as well. On Fri, Sep 27, 2013 at 3:10 PM, Sorin Manolache sor...@gmail.com wrote: On 2013-09-27 11:11, Pon Umapathy Kailash S wrote: Thanks for your response, Sorin. My concern in this approach is that - it would require one worker thread to be held up for

Re: svn commit: r1526666 - in /httpd/httpd/trunk: CHANGES docs/log-message-tags/next-number server/mpm/winnt/child.c server/mpm/winnt/mpm_winnt.c server/mpm/winnt/mpm_winnt.h

2013-09-27 Thread Ivan Zhakov
On 27 September 2013 00:08, traw...@apache.org wrote: Author: trawick Date: Thu Sep 26 20:08:33 2013 New Revision: 152 URL: http://svn.apache.org/r152 Log: WinNT MPM: Exit the child if the parent process crashes or is terminated. Submitted by: Oracle, via trawick The original

Re: [PATCH 49220] mod_fcgid - restrict arbitrary command execution from .htaccess files

2013-09-27 Thread Jeff Trawick
On Fri, Sep 20, 2013 at 4:31 PM, Benjamin Coddington bcodd...@uvm.eduwrote: Hello everyone, We're looking at moving our shared hosting execution behind mod_fcgid and suexec, but we need to continue to allow our users .htaccess 'Files' overrides. The current mod_fcgid allows users to execute

Re: [PATCH 55593] Add SSLServerInfoFile directive

2013-09-27 Thread Kaspar Brand
On 26.09.2013 23:59, Trevor Perrin wrote: It doesn't work with filenames relative to the Apache root. The patch I submitted uses ssl_engine_config.c:ssl_cmd_check_file() to map relative to absolute filenames. I'm not sure how you'd do that with SSLOpenSSLConfCmd? It could probably be

Re: [PATCH 49220] mod_fcgid - restrict arbitrary command execution from .htaccess files

2013-09-27 Thread Benjamin Coddington
On Sep 27, 2013, at 8:41 AM, Jeff Trawick traw...@gmail.com wrote: On Fri, Sep 20, 2013 at 4:31 PM, Benjamin Coddington bcodd...@uvm.eduwrote: Hello everyone, We're looking at moving our shared hosting execution behind mod_fcgid and suexec, but we need to continue to allow our users

Re: [PATCH 49220] mod_fcgid - restrict arbitrary command execution from .htaccess files

2013-09-27 Thread Benjamin Coddington
On Sep 27, 2013, at 1:50 PM, Benjamin Coddington bcodd...@uvm.edu wrote: since I'll now need to generate a large number of AllowOverrideList configurations in order to implement this across our hosting - which requires I walk our modules to find all the directives in FileInfo and explicitly

Re: [PATCH 55593] Add SSLServerInfoFile directive

2013-09-27 Thread Trevor Perrin
On Fri, Sep 27, 2013 at 9:16 AM, Kaspar Brand httpd-dev.2...@velox.ch wrote: On 26.09.2013 23:59, Trevor Perrin wrote: It doesn't work with filenames relative to the Apache root. The patch I submitted uses ssl_engine_config.c:ssl_cmd_check_file() to map relative to absolute filenames. I'm