From: Frédéric Lécaille Date: Mon, 27 Nov 2023 08:10:29 +0000 (+0100) Subject: BUILD: quic: Missing RX header inclusions X-Git-Tag: v2.9-dev12~68 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5f9bd6bbce5f9283fc289d8a0b024c1e4b9eb611;p=thirdparty%2Fhaproxy.git BUILD: quic: Missing RX header inclusions Fix such building issues: In file included from src/quic_tx.c:15: include/haproxy/quic_tx.h:51:23: warning: ‘struct quic_rx_packet’ Do not know why the compiler warns about such missing header inclusions just now. It should have complained a long time ago during the big QUIC source code split. --- diff --git a/include/haproxy/quic_frame.h b/include/haproxy/quic_frame.h index d100253077..90d6b213c8 100644 --- a/include/haproxy/quic_frame.h +++ b/include/haproxy/quic_frame.h @@ -30,6 +30,7 @@ #include #include #include +#include const char *quic_frame_type_string(enum quic_frame_type ft); diff --git a/include/haproxy/quic_tx.h b/include/haproxy/quic_tx.h index 5e91c2501f..66541b208a 100644 --- a/include/haproxy/quic_tx.h +++ b/include/haproxy/quic_tx.h @@ -25,6 +25,7 @@ #include #include #include +#include #include struct buffer *qc_txb_alloc(struct quic_conn *qc);