]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: idleconns: include missing ebmbtree.h at several places
authorWilly Tarreau <w@1wt.eu>
Wed, 6 Oct 2021 16:23:40 +0000 (18:23 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 6 Oct 2021 23:36:51 +0000 (01:36 +0200)
backend.c, all muxes, backend.c started manipulating ebmb_nodes with
the introduction of idle conns but the types were inherited through
other includes. Let's add ebmbtree.h there.

src/backend.c
src/hlua_fcn.c
src/mux_fcgi.c
src/mux_h1.c
src/mux_h2.c

index 7143ba65d036273c8c45dc490a0b28bdafdd44c0..43642a366680ac41962e2ff4c83e26ad692c9e7a 100644 (file)
@@ -19,6 +19,8 @@
 #include <ctype.h>
 #include <sys/types.h>
 
+#include <import/ebmbtree.h>
+
 #include <haproxy/acl.h>
 #include <haproxy/api.h>
 #include <haproxy/arg.h>
index 56923f0313a3e1bbf36010586dea5d17d8862a84..42fb920f86e6d23d9930dfb13efa4840a87a414c 100644 (file)
@@ -21,6 +21,8 @@
 #include <lua.h>
 #include <lualib.h>
 
+#include <import/ebmbtree.h>
+
 #include <haproxy/cli-t.h>
 #include <haproxy/errors.h>
 #include <haproxy/hlua-t.h>
index 5fb1c5e1b60255987134f79d7665327c162d5cc7..0b29fa00827e456458aca78ffc3587a049e716c9 100644 (file)
@@ -11,6 +11,8 @@
  */
 
 #include <import/ist.h>
+#include <import/eb32tree.h>
+#include <import/ebmbtree.h>
 
 #include <haproxy/api.h>
 #include <haproxy/cfgparse.h>
index 5dfd26cc886bcede252f5b6cb6044b9a232851fc..3e2e094fcb780ada218990af282b1264c12ef03a 100644 (file)
@@ -10,6 +10,7 @@
  *
  */
 #include <import/ebistree.h>
+#include <import/ebmbtree.h>
 
 #include <haproxy/api.h>
 #include <haproxy/cfgparse.h>
index ffdafc87614b6ad5cd8a756995e0faa6752e5ec2..ce56058b155dd242453fd7ef53b3e44d87692dfb 100644 (file)
@@ -11,6 +11,7 @@
  */
 
 #include <import/eb32tree.h>
+#include <import/ebmbtree.h>
 #include <haproxy/api.h>
 #include <haproxy/cfgparse.h>
 #include <haproxy/connection.h>