mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
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:
parent
a53e523aef
commit
7978493c2e
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue