From ce65cbec38ed6211375e6261c03bd686a9610e93 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sat, 8 May 2021 13:59:56 +0200 Subject: [PATCH] BUILD: udp: include tools.h from proto_udp.c A few functions are used from there for address conversion but the file wasn't included. --- src/proto_udp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proto_udp.c b/src/proto_udp.c index 56d351823..f07170f29 100644 --- a/src/proto_udp.c +++ b/src/proto_udp.c @@ -39,6 +39,7 @@ #include #include #include +#include static int udp_bind_listener(struct listener *listener, char *errmsg, int errlen); static void udp_enable_listener(struct listener *listener);