commit | d1dd2500f2b6a63cc0fbd39122d642ecacff8c77 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat May 08 20:30:37 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sat May 08 20:35:39 2021 +0200 |
tree | 05a8c0b9ac9610be73f533fa28cdc2fc5363ed53 | |
parent | 5958c43271c6ed3c8c00c0aea375b2f97a7c2b06 [diff] |
BUILD: http-rules: include proxy.h from http_rules.c Many proxy functions are called there but the include was missing and inherited via cfgparse.h.
diff --git a/src/http_rules.c b/src/http_rules.c index 54fa0e9..3186036 100644 --- a/src/http_rules.c +++ b/src/http_rules.c
@@ -28,6 +28,7 @@ #include <haproxy/http_rules.h> #include <haproxy/log.h> #include <haproxy/pool.h> +#include <haproxy/proxy.h> #include <haproxy/sample.h> #include <haproxy/tools.h> #include <haproxy/version.h>