From: Frédéric Lécaille Date: Thu, 18 Feb 2021 15:35:43 +0000 (+0100) Subject: BUILD: proxy: Missing header inclusion for quic_transport_params_init() X-Git-Tag: v2.4-dev11~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f57c64fc062ea5eeaa90a7efe7743c51e5baca27;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/src/proxy.c b/src/proxy.c index de66140ecc..745d6ee45d 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 */