You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Ruediger Pluem <rp...@apache.org> on 2005/12/20 21:47:05 UTC

Re: svn commit: r358022 - in /httpd/httpd/trunk/modules: http/http_core.c http/http_filters.c http/mod_core.h proxy/mod_proxy_http.c


On 12/20/2005 04:50 PM, jim@apache.org wrote:

[..cut..]

> @@ -208,6 +208,8 @@
>                                      NULL, r, r->connection);
>          ap_add_output_filter_handle(ap_http_header_filter_handle,
>                                      NULL, r, r->connection);
> +        ap_add_output_filter_handle(ap_http_outerror_filter_handle,
> +                                    NULL, r, r->connection);
>      }

Does this ensure that the HTTP_OUTERROR filter is run after the HTTP_HEADER filter?
Otherwise I fear that they get in each others way, because the HTTP_OUTERROR filter
should only handle things after the headers had been sent. Error buckets that occur
before the headers have been sent are already handled by the HTTP_HEADER filter via ap_die.

Regards

RĂ¼diger