You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2016/02/06 01:30:37 UTC

svn commit: r1728779 - in /httpd/httpd/trunk/modules/proxy: mod_proxy.h proxy_util.h

Author: rjung
Date: Sat Feb  6 00:30:37 2016
New Revision: 1728779

URL: http://svn.apache.org/viewvc?rev=1728779&view=rev
Log:
Standardize order of "extern" and XXX_DECLARE_YYY.

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy.h
    httpd/httpd/trunk/modules/proxy/proxy_util.h

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy.h?rev=1728779&r1=1728778&r2=1728779&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy.h (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy.h Sat Feb  6 00:30:37 2016
@@ -568,8 +568,8 @@ struct proxy_balancer_method {
 
 
 /* These 2 are in mod_proxy.c */
-PROXY_DECLARE_DATA extern proxy_hcmethods_t proxy_hcmethods[];
-PROXY_DECLARE_DATA extern proxy_wstat_t proxy_wstat_tbl[];
+extern PROXY_DECLARE_DATA proxy_hcmethods_t proxy_hcmethods[];
+extern PROXY_DECLARE_DATA proxy_wstat_t proxy_wstat_tbl[];
 
 /* Following 4 from health check */
 APR_DECLARE_OPTIONAL_FN(void, hc_show_exprs, (request_rec *));

Modified: httpd/httpd/trunk/modules/proxy/proxy_util.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.h?rev=1728779&r1=1728778&r2=1728779&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/proxy_util.h (original)
+++ httpd/httpd/trunk/modules/proxy/proxy_util.h Sat Feb  6 00:30:37 2016
@@ -31,9 +31,9 @@ PROXY_DECLARE(int) ap_proxy_is_domainnam
 PROXY_DECLARE(int) ap_proxy_is_hostname(struct dirconn_entry *This, apr_pool_t *p);
 PROXY_DECLARE(int) ap_proxy_is_word(struct dirconn_entry *This, apr_pool_t *p);
 
-PROXY_DECLARE_DATA extern int proxy_lb_workers;
-PROXY_DECLARE_DATA extern const apr_strmatch_pattern *ap_proxy_strmatch_path;
-PROXY_DECLARE_DATA extern const apr_strmatch_pattern *ap_proxy_strmatch_domain;
+extern PROXY_DECLARE_DATA int proxy_lb_workers;
+extern PROXY_DECLARE_DATA const apr_strmatch_pattern *ap_proxy_strmatch_path;
+extern PROXY_DECLARE_DATA const apr_strmatch_pattern *ap_proxy_strmatch_domain;
 
 /**
  * Register optional functions declared within proxy_util.c.