From: Stefan Eissing Date: Fri, 5 Feb 2016 10:41:00 +0000 (+0000) Subject: seems to work better in this order X-Git-Tag: 2.5.0-alpha~2200 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b08bf052b4d67e45d21ccc2ccaa160ad51a316f6;p=apache seems to work better in this order git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728631 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index 95c948e7f0..985e4589db 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -91,10 +91,6 @@ typedef struct { const char *name; } proxy_wstat_t; -/* 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[]; - #define BALANCER_PREFIX "balancer://" #if APR_CHARSET_EBCDIC @@ -562,6 +558,11 @@ struct proxy_balancer_method { #define PROXY_DECLARE_DATA __declspec(dllimport) #endif + +/* 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[]; + /* Following 4 from health check */ APR_DECLARE_OPTIONAL_FN(void, hc_show_exprs, (request_rec *)); APR_DECLARE_OPTIONAL_FN(void, hc_select_exprs, (request_rec *, const char *));