]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: add some missing includes
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Wed, 21 May 2025 09:56:08 +0000 (11:56 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Wed, 21 May 2025 12:44:27 +0000 (14:44 +0200)
Insert some missing includes statement in QUIC source files. This was
detected after the next commit which adjust the include list used in
quic_conn-t.h file.

include/haproxy/quic_sock.h
include/haproxy/quic_tx.h
src/quic_cc.c
src/quic_trace.c

index de741902192bb0a1a12d22ae4ec3e6805ec50c77..66f24c58e137b1133b75858cbf0d97bbdb602512 100644 (file)
@@ -31,6 +31,7 @@
 
 #include <haproxy/api.h>
 #include <haproxy/connection-t.h>
+#include <haproxy/fd-t.h>
 #include <haproxy/listener-t.h>
 #include <haproxy/quic_conn-t.h>
 #include <haproxy/quic_sock-t.h>
index 1be932230f73f522d39824b06f687b8e8eb9618e..60d567a723c77f3674be06c8f203f964d6d98e87 100644 (file)
@@ -23,6 +23,7 @@
 
 #include <haproxy/buf-t.h>
 #include <haproxy/list-t.h>
+#include <haproxy/pool.h>
 #include <haproxy/quic_conn-t.h>
 #include <haproxy/quic_tls-t.h>
 #include <haproxy/quic_pacing-t.h>
index de9a4c6493439e9a471b559c4cbabba008364f07..332f8aa71cc7720c0f9b61e1b5d37fc546604c10 100644 (file)
@@ -20,6 +20,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include <haproxy/global.h>
 #include <haproxy/proto_quic.h>
 #include <haproxy/quic_cc.h>
 #include <haproxy/quic_pacing.h>
index ae61c2441f4c7919905505388519b0bb1448c3ab..3f79c2d46130de040ae611a85cfe9faf9179079d 100644 (file)
@@ -15,6 +15,7 @@
 #include <haproxy/api-t.h>
 #include <haproxy/chunk.h>
 #include <haproxy/quic_conn.h>
+#include <haproxy/quic_loss-t.h>
 #include <haproxy/quic_ssl.h>
 #include <haproxy/quic_tls.h>
 #include <haproxy/quic_trace.h>