From b08bf052b4d67e45d21ccc2ccaa160ad51a316f6 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Fri, 5 Feb 2016 10:41:00 +0000 Subject: [PATCH] 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 --- modules/proxy/mod_proxy.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 *));