You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2021/09/08 08:21:23 UTC

svn commit: r1893107 - /httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c

Author: ylavic
Date: Wed Sep  8 08:21:22 2021
New Revision: 1893107

URL: http://svn.apache.org/viewvc?rev=1893107&view=rev
Log:
mod_proxy: Axe unused ap_filter_input_pending in 2.4.x (only) after r1892971.

Submitted by: ylavic
Reviewed by: ylavic, icing,  covener

Modified:
    httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c

Modified: httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c?rev=1893107&r1=1893106&r2=1893107&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/branches/2.4.x/modules/proxy/proxy_util.c Wed Sep  8 08:21:22 2021
@@ -4457,11 +4457,6 @@ static APR_INLINE int ap_filter_output_p
     return c->data_in_output_filters ? OK : DECLINED;
 }
 
-static APR_INLINE int ap_filter_input_pending(conn_rec *c)
-{
-    return c->data_in_input_filters ? OK : DECLINED;
-}
-
 PROXY_DECLARE(apr_status_t) ap_proxy_buckets_lifetime_transform(request_rec *r,
                                                       apr_bucket_brigade *from,
                                                       apr_bucket_brigade *to)