mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
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.
This commit is contained in:
parent
f949f7df83
commit
5f9bd6bbce
2 changed files with 2 additions and 0 deletions
|
|
@ -30,6 +30,7 @@
|
|||
#include <haproxy/quic_conn-t.h>
|
||||
#include <haproxy/quic_enc.h>
|
||||
#include <haproxy/quic_frame-t.h>
|
||||
#include <haproxy/quic_rx-t.h>
|
||||
|
||||
const char *quic_frame_type_string(enum quic_frame_type ft);
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
#include <haproxy/list-t.h>
|
||||
#include <haproxy/quic_conn-t.h>
|
||||
#include <haproxy/quic_tls-t.h>
|
||||
#include <haproxy/quic_rx-t.h>
|
||||
#include <haproxy/quic_tx-t.h>
|
||||
|
||||
struct buffer *qc_txb_alloc(struct quic_conn *qc);
|
||||
|
|
|
|||
Loading…
Reference in a new issue