From: Frédéric Lécaille Date: Thu, 8 Jun 2023 05:14:02 +0000 (+0200) Subject: MINOR: quic: Add a quic_openssl_compat struct to quic_conn struct X-Git-Tag: v2.9-dev2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7978493c2eb78a9220fccf353000e965ee86fcf6;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/include/haproxy/quic_conn-t.h b/include/haproxy/quic_conn-t.h index cf246d99a5..3f9e1a38d1 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;