]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Move new struct member to the end of the struct,
authorMladen Turk <mturk@apache.org>
Sat, 30 Sep 2006 11:26:26 +0000 (11:26 +0000)
committerMladen Turk <mturk@apache.org>
Sat, 30 Sep 2006 11:26:26 +0000 (11:26 +0000)
so we can keep the compatibility.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@451582 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.h

index b0f742c85253272155f3d3504b196b53ba8d8f24..e4dd599b1177dc3d5a07f4b3998cf4419ed5601e 100644 (file)
@@ -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;
 };
 
 /*