MINOR: quic: Add a quic_openssl_compat struct to quic_conn struct

Add quic_openssl_compat struct to the quic_conn struct to support the
QUIC OpenSSL wrapper feature.
This commit is contained in:
Frédéric Lécaille 2023-06-08 07:14:02 +02:00
parent a53e523aef
commit 7978493c2e

View File

@ -36,6 +36,7 @@
#include <haproxy/quic_cc-t.h>
#include <haproxy/quic_frame-t.h>
#include <haproxy/quic_loss-t.h>
#include <haproxy/quic_openssl_compat-t.h>
#include <haproxy/quic_stats-t.h>
#include <haproxy/quic_tls-t.h>
#include <haproxy/quic_tp-t.h>
@ -615,6 +616,9 @@ struct quic_conn {
struct list pktns_list;
struct ssl_sock_ctx *xprt_ctx;
#ifdef USE_QUIC_OPENSSL_COMPAT
struct quic_openssl_compat openssl_compat;
#endif
struct sockaddr_storage local_addr;
struct sockaddr_storage peer_addr;