mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-20 22:01:49 -04:00
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:
parent
337f23a112
commit
63617dbec6
5 changed files with 8 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@
|
|||
*/
|
||||
|
||||
#include <import/ist.h>
|
||||
#include <import/eb32tree.h>
|
||||
#include <import/ebmbtree.h>
|
||||
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
*
|
||||
*/
|
||||
#include <import/ebistree.h>
|
||||
#include <import/ebmbtree.h>
|
||||
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
*/
|
||||
|
||||
#include <import/eb32tree.h>
|
||||
#include <import/ebmbtree.h>
|
||||
#include <haproxy/api.h>
|
||||
#include <haproxy/cfgparse.h>
|
||||
#include <haproxy/connection.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue