]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Make sure updatelbstatus() is NULL
authorJim Jagielski <jim@apache.org>
Mon, 24 Jul 2017 17:19:55 +0000 (17:19 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 24 Jul 2017 17:19:55 +0000 (17:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1802845 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/balancers/mod_lbmethod_bybusyness.c
modules/proxy/balancers/mod_lbmethod_byrequests.c
modules/proxy/balancers/mod_lbmethod_bytraffic.c
modules/proxy/balancers/mod_lbmethod_heartbeat.c
modules/proxy/examples/mod_lbmethod_rr.c

index 67d53a3551e00d1e7832606ba7db6c37b16f00a8..30a8f55429c6224bbf745c8c91036ff474cb8361 100644 (file)
@@ -141,7 +141,8 @@ static const proxy_balancer_method bybusyness =
     &find_best_bybusyness,
     NULL,
     &reset,
-    &age
+    &age,
+    NULL
 };
 
 static void register_hook(apr_pool_t *p)
index 206fe9216b52bfe459e5ffa787d21d1f93413301..83424cefed90d26ea9ab3e80b9f5facd364d7cfb 100644 (file)
@@ -177,7 +177,8 @@ static const proxy_balancer_method byrequests =
     &find_best_byrequests,
     NULL,
     &reset,
-    &age
+    &age,
+    NULL
 };
 
 static void register_hook(apr_pool_t *p)
index b3fe556a55050dcf58c65887ca91ebc0793eaaab..6cf2478de55b3d7865f5dfa2b6a652aad5615b97 100644 (file)
@@ -146,7 +146,8 @@ static const proxy_balancer_method bytraffic =
     &find_best_bytraffic,
     NULL,
     &reset,
-    &age
+    &age,
+    NULL
 };
 
 static void register_hook(apr_pool_t *p)
index 8b52eca6a27b7aaa0eb1d3226dedcd5ed73ed8c1..640bddb7f752778640cf525a998c12c712b8b16e 100644 (file)
@@ -358,7 +358,8 @@ static const proxy_balancer_method heartbeat =
     &find_best_hb,
     NULL,
     &reset,
-    &age
+    &age,
+    NULL
 };
 
 static int lb_hb_init(apr_pool_t *p, apr_pool_t *plog,
index 8ad3c526c6da6e4d2a3cb83de23e1f35b7e9a954..741cc8b6ff30a3ea28cd145c57d51cf661541f33 100644 (file)
@@ -115,7 +115,8 @@ static const proxy_balancer_method roundrobin =
     &find_best_roundrobin,
     NULL,
     &reset,
-    &age
+    &age,
+    NULL
 };
 
 static void ap_proxy_rr_register_hook(apr_pool_t *p)