On Tue, Oct 22, 2013 at 2:18 PM, Yann Ylavic <ylavic....@gmail.com> wrote:
> -AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r,
> apr_bucket_brigade *bb)
> +struct ap_mime_headers_ctx_t {
> +    int fields_read;
> +    char *last_field;
> +    apr_size_t last_len;
> +    apr_size_t alloc_len;
> +    unsigned int fold :1,
> +                 done :1;
> +};
> +
> +AP_DECLARE(apr_status_t)
> +ap_get_mime_headers_ex(request_rec *r, apr_bucket_brigade *bb, apr_table_t
> *to,
> +                       ap_filter_t *from, apr_read_type_e block,
> +                       ap_mime_headers_ctx_t **pctx)
>  {
> -    char *last_field = NULL;
> -    apr_size_t last_len = 0;
> -    apr_size_t alloc_len = 0;


Making my way through the review, had a tough time following the need
for this part. Any pointers?

Reply via email to