From: William A. Rowe Jr Date: Mon, 29 Nov 2004 17:41:49 +0000 (+0000) Subject: Usage was inconsistent with the rest of ap_filter_t examples; X-Git-Tag: 2.1.2~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6a9f1c6203f470b06790805b5c34a6da2087f22;p=apache Usage was inconsistent with the rest of ap_filter_t examples; we always presume the typedef'fed flavor of such symbol names. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106932 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index 47e40c9254..3cd4d7f42b 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -910,16 +910,16 @@ struct request_rec { const struct htaccess_result *htaccess; /** A list of output filters to be used for this request */ - struct ap_filter_t *output_filters; + ap_filter_t *output_filters; /** A list of input filters to be used for this request */ - struct ap_filter_t *input_filters; + ap_filter_t *input_filters; /** A list of protocol level output filters to be used for this * request */ - struct ap_filter_t *proto_output_filters; + ap_filter_t *proto_output_filters; /** A list of protocol level input filters to be used for this * request */ - struct ap_filter_t *proto_input_filters; + ap_filter_t *proto_input_filters; /** A flag to determine if the eos bucket has been sent yet */ int eos_sent; @@ -1007,9 +1007,9 @@ struct conn_rec { * another. must remain valid for all requests on this conn */ apr_table_t *notes; /** A list of input filters to be used for this connection */ - struct ap_filter_t *input_filters; + ap_filter_t *input_filters; /** A list of output filters to be used for this connection */ - struct ap_filter_t *output_filters; + ap_filter_t *output_filters; /** handle to scoreboard information for this connection */ void *sbh; /** The bucket allocator to use for all bucket/brigade creations */