commit | 908908ef2aee6f220bf25113f636c16f16d998ad | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat May 08 13:07:31 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat May 08 13:07:31 2021 +0200 |
tree | 85f6e1124b5264af93a5391af39d14060a352eab | |
parent | 4bad5e2080cdec54514858461024da5c5a502f60 [diff] [blame] |
BUILD: connection: include tools.h in connection.c Several functions from tools.h are called there without the file being included.
diff --git a/src/connection.c b/src/connection.c index 67b2124..3e3fb00 100644 --- a/src/connection.c +++ b/src/connection.c
@@ -25,6 +25,7 @@ #include <haproxy/sample.h> #include <haproxy/ssl_sock.h> #include <haproxy/stream_interface.h> +#include <haproxy/tools.h> DECLARE_POOL(pool_head_connection, "connection", sizeof(struct connection));