BUILD: idleconns: include missing ebmbtree.h at several places

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.
This commit is contained in:
Willy Tarreau 2021-10-06 18:23:40 +02:00
parent 337f23a112
commit 63617dbec6
5 changed files with 8 additions and 0 deletions

View 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>

View 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>

View 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>

View file

@ -10,6 +10,7 @@
*
*/
#include <import/ebistree.h>
#include <import/ebmbtree.h>
#include <haproxy/api.h>
#include <haproxy/cfgparse.h>

View 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>