From 9ec82560f24a24245e865df6a2650b5dfd44c986 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 24 Jun 2026 16:43:32 +0200 Subject: [PATCH] BUILD: quic_pacing: add missing includes for api and activity in the file quic_pacing.c is missing a number of include files that it got by chance through task.h, resulting in build breakage as soon as that one gets cleaned up. Let's add api.h and activity.h that are needed. No backport is needed. --- src/quic_pacing.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/quic_pacing.c b/src/quic_pacing.c index 856c5eebe..c9b76785a 100644 --- a/src/quic_pacing.c +++ b/src/quic_pacing.c @@ -1,3 +1,5 @@ +#include +#include #include #include -- 2.47.3