From: Aurelien DARRAGON Date: Wed, 15 Nov 2023 09:44:32 +0000 (+0100) Subject: CLEANUP: backend: removing unused LB param X-Git-Tag: v2.9-dev10~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a327b80f1f8cd7d28a4ac3d330420b93b014d13d;p=thirdparty%2Fhaproxy.git CLEANUP: backend: removing unused LB param BE_LB_HASH_RND was introduced with 760e81d35 ("MINOR: backend: implement random-based load balancing") but was never used since. Removing it to regain an extra slot for future types. --- diff --git a/include/haproxy/backend-t.h b/include/haproxy/backend-t.h index 8d59738711..5d1560ac34 100644 --- a/include/haproxy/backend-t.h +++ b/include/haproxy/backend-t.h @@ -48,7 +48,6 @@ #define BE_LB_HASH_HDR 0x00003 /* hash HTTP header value */ #define BE_LB_HASH_RDP 0x00004 /* hash RDP cookie value */ #define BE_LB_HASH_SMP 0x00005 /* hash a sample expression */ -#define BE_LB_HASH_RND 0x00008 /* hash a random value */ /* BE_LB_RR_* is used with BE_LB_KIND_RR */ #define BE_LB_RR_DYN 0x00000 /* dynamic round robin (default) */