Re: Reading content of requests entering Apache

2012-01-11 Thread Anthony Whitehead
Hi Pranesh, I think you'll find that a GET request doesn't have a body to read. All the information you can get is in the HTTP Request headers and the URI/Query String which can be found in the tables and values on the request_rec structure. This is a much simpler thing to do that the POST/PUT ca

A few questions on Input Filters

2012-01-11 Thread Martin Townsend
Hi, I have an input filter for processing POST requests and it was working well until recently. After debugging I found that it was due to a large POST request (around 2680 bytes) which most of the time was handled as a single bucket brigade with one heap bucket. The problem occured when th