BUILD: quic: global.h is needed in cfgparse-quic

cfgparse-quic accesses some members of the "global" struct but only
includes global-t.h. It actually used to work via tools.h due to a
long dependency chain that brought it, but it will be fixed and will
break cfgparse-quic, so let's fix it first.
This commit is contained in:
Willy Tarreau 2022-11-24 08:28:43 +01:00
parent 4d46638540
commit 07a3d539f5

View File

@ -3,7 +3,7 @@
#include <haproxy/api.h>
#include <haproxy/cfgparse.h>
#include <haproxy/errors.h>
#include <haproxy/global-t.h>
#include <haproxy/global.h>
#include <haproxy/listener.h>
#include <haproxy/proxy-t.h>
#include <haproxy/quic_cc-t.h>