From 7978493c2eb78a9220fccf353000e965ee86fcf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Thu, 8 Jun 2023 07:14:02 +0200 Subject: [PATCH] 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. --- include/haproxy/quic_conn-t.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/haproxy/quic_conn-t.h b/include/haproxy/quic_conn-t.h index cf246d99a..3f9e1a38d 100644 --- a/include/haproxy/quic_conn-t.h +++ b/include/haproxy/quic_conn-t.h @@ -36,6 +36,7 @@ #include #include #include +#include #include #include #include @@ -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;