From f57c64fc062ea5eeaa90a7efe7743c51e5baca27 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Thu, 18 Feb 2021 16:35:43 +0100 Subject: [PATCH] BUILD: proxy: Missing header inclusion for quic_transport_params_init() Since this commit: 144289b45 ("REORG: move init_default_instance() to proxy.c and pass it the defproxy pointer") as quic_transport_params_init() has been moved from cfgparse.c to proxy.c this latter source file must include xprt_quic.h header. Should fix #1153 issue. --- src/proxy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proxy.c b/src/proxy.c index de66140..745d6ee 100644 --- a/src/proxy.c +++ b/src/proxy.c @@ -47,6 +47,7 @@ #include #include #include +#include int listeners; /* # of proxy listeners, set by cfgparse */ -- 1.7.10.4