From: Mladen Turk Date: Sat, 30 Sep 2006 11:26:26 +0000 (+0000) Subject: Move new struct member to the end of the struct, X-Git-Tag: 2.3.0~2104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1689a2c3f414208107b7a73c31b5d4c97afcefe6;p=thirdparty%2Fapache%2Fhttpd.git Move new struct member to the end of the struct, so we can keep the compatibility. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@451582 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index b0f742c8525..e4dd599b117 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -296,7 +296,6 @@ typedef struct { struct proxy_worker { int id; /* scoreboard id */ apr_interval_time_t retry; /* retry interval */ - char retry_set; int lbfactor; /* initial load balancing factor */ const char *name; const char *scheme; /* scheme to use ajp|http|https */ @@ -337,6 +336,7 @@ struct proxy_worker { apr_interval_time_t ping_timeout; char ping_timeout_set; int lbset; /* load balancer cluster set */ + char retry_set; }; /*