mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-09 23:39:55 +00:00
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:
parent
769e9ffd94
commit
eb01f597eb
@ -28,6 +28,8 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <import/eb64tree.h>
|
||||
|
||||
#include <haproxy/buf.h>
|
||||
#include <haproxy/chunk.h>
|
||||
#include <haproxy/net_helper.h>
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user