From: Willy Tarreau Date: Wed, 6 Oct 2021 07:18:37 +0000 (+0200) Subject: BUILD: resolvers: define missing types in resolvers.h X-Git-Tag: v2.5-dev9~103 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2d968a9bf75da773ec53d282c31cca0cf3acacc;p=thirdparty%2Fhaproxy.git BUILD: resolvers: define missing types in resolvers.h proxy, server, stream_interface and list were used but not defined. Let's define them as well as act_rule and drop action-t.h. --- diff --git a/include/haproxy/resolvers.h b/include/haproxy/resolvers.h index f82406de91..70211a82b5 100644 --- a/include/haproxy/resolvers.h +++ b/include/haproxy/resolvers.h @@ -22,9 +22,14 @@ #ifndef _HAPROXY_RESOLVERS_H #define _HAPROXY_RESOLVERS_H -#include #include +struct proxy; +struct server; +struct stream_interface; +struct act_rule; +struct list; + extern struct list sec_resolvers; extern unsigned int resolv_failed_resolutions;