Re: How to write apache module in C through which to retrieve POST form data from browser?

2013-01-05 Thread Hoang Vu Dang
You can take a look at a small module I wrote for myself https://github.com/danghvu/mod_dumpost p/s: I did submit it for review but apparently this list is not so active. On Jan 5, 2013, at 7:13 PM, Dhiren123 wrote: > I am already written a apache module in c and parsed GET data from browser

Re: Removing bogus release from mod_ldap_userdir module?

2013-02-03 Thread Hoang-Vu Dang
I second that... I also duplicate my release on mod_dumpost.. but can't find a way to delete it. Vu On 02/03/2013 10:33 AM, Helmut Tessarek wrote: On 03.02.13 4:20 , Daniel Gruno wrote: On 02/03/2013 01:33 AM, John Morrissey wrote: I accidentally created a release for mod_ldap_userdir with n

How to control block size of input_filter data

2013-03-12 Thread Hoang-Vu Dang
Hi all, When I write an input_filter, I notice that the data sent from client is not always available in one chunk if it's large. In other words, The input_filter() function will be called multiple times per request. My question is how to have a control on this (for example the size of the c

Re: How to control block size of input_filter data

2013-03-12 Thread Hoang-Vu Dang
req->pool. " What exactly is the callback function that I need to look for ? When it executes, can we be sure that all the data has been processed, and our ctx will be maintained at that state ? Best, Vu On 03/12/2013 10:36 AM, Sorin Manolache wrote: On 2013-03-12 10:16, Hoang-

ap_log_rerror limit size

2013-03-13 Thread Hoang Vu Dang
Hi guys, Is there any limit of the size of a message log entry? How to control this ? I did this: ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, f->r, "%s", buffer); And the buffer was truncated on the error log. I check the strlen of the buffer and it was about 320K, and I got only

Re: ap_log_rerror limit size

2013-03-13 Thread Hoang Vu Dang
Yes I am sure I can't find other entries related to that request. How to find whether I used PIPE_BUF and how to increase that BUF size ? On Mar 13, 2013, at 11:16 AM, Eric Covener wrote: > On Wed, Mar 13, 2013 at 6:01 AM, Hoang Vu Dang wrote: >> Hi guys, >> >> Is t

Re: ap_log_rerror limit size

2013-03-13 Thread Hoang-Vu Dang
If this is true then can anyone tell me why this "HUGE_STRING_LEN" value is a hard-coded value but not a configurable option ? Cheers, Vu On 03/13/2013 11:16 AM, Eric Covener wrote: On Wed, Mar 13, 2013 at 6:01 AM, Hoang Vu Dang wrote: Hi guys, Is there any limit of the size

Re: ap_log_rerror limit size

2013-03-13 Thread Hoang-Vu Dang
is large and do something with it before logging. With this limitation, I will need to write it to somewhere else using my custom file handler. Vu On Wed, Mar 13, 2013 at 5:46 PM, wrote: > On Wed, Mar 13, 2013 at 04:40:50PM +0100, Hoang-Vu Dang wrote: > > I traced this into the Apac