BUG/MINOR: quic: fix includes for compilation

Fix missing includes in quic code following the general recent include
reorganization. This fixes the compilation error with QUIC enabled.
This commit is contained in:
Amaury Denoyelle 2021-10-07 16:44:05 +02:00
parent 769e9ffd94
commit eb01f597eb
4 changed files with 8 additions and 1 deletions

View File

@ -28,6 +28,8 @@
#include <stdint.h>
#include <import/eb64tree.h>
#include <haproxy/buf.h>
#include <haproxy/chunk.h>
#include <haproxy/net_helper.h>

View File

@ -10,7 +10,8 @@
*
*/
#include <import/eb32tree.h>
#include <import/eb64tree.h>
#include <haproxy/api.h>
#include <haproxy/cfgparse.h>
#include <haproxy/connection.h>
@ -21,6 +22,7 @@
#include <haproxy/net_helper.h>
#include <haproxy/quic_frame.h>
#include <haproxy/session-t.h>
#include <haproxy/ssl_sock-t.h>
#include <haproxy/stats.h>
#include <haproxy/stream.h>
#include <haproxy/stream_interface.h>

View File

@ -17,6 +17,7 @@
#include <haproxy/connection.h>
#include <haproxy/listener.h>
#include <haproxy/session.h>
#include <haproxy/xprt_quic.h>
/* This function is called from the protocol layer accept() in order to

View File

@ -22,6 +22,8 @@
#include <netinet/tcp.h>
#include <import/ebmbtree.h>
#include <haproxy/buf-t.h>
#include <haproxy/compat.h>
#include <haproxy/api.h>