Re: Chunked request

2016-09-23 Thread Yann Ylavic
Hi, On Fri, Sep 23, 2016 at 12:59 PM, André Rothe wrote: > > Any ideas? It depends on whether your filter is called in blocking or non-blocking mode, i.e. the apr_read_type_e parameter value (either APR_BLOCK_READ or APR_NONBLOCK_READ). In the former case, your

Chunked request

2016-09-23 Thread André Rothe
Hi, I try to understand an request filter (input). Maybe you can help me to understand the processes: The POST size of a request is larger than 8192 bytes, so the request will be split up into two pieces. I need both parts to process the request within the filter. There are further filters,