From 020d0389396d0ee01041188a3d1b211a1d6b6c6a Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Tue, 18 Apr 2023 19:30:54 +0100 Subject: QUIC DISPATCH/APL: Implement SSL_get0_connection Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/20765) --- include/internal/quic_ssl.h | 1 + include/openssl/ssl.h.in | 1 + 2 files changed, 2 insertions(+) (limited to 'include') diff --git a/include/internal/quic_ssl.h b/include/internal/quic_ssl.h index 97ee2c9218..86dca6bb30 100644 --- a/include/internal/quic_ssl.h +++ b/include/internal/quic_ssl.h @@ -66,6 +66,7 @@ BIO *ossl_quic_conn_get_net_wbio(const SSL *s); __owur int ossl_quic_conn_set_initial_peer_addr(SSL *s, const BIO_ADDR *peer_addr); __owur SSL *ossl_quic_conn_stream_new(SSL *s, uint64_t flags); +__owur SSL *ossl_quic_get0_connection(SSL *s); /* * Used to override ossl_time_now() for debug purposes. Must be called before diff --git a/include/openssl/ssl.h.in b/include/openssl/ssl.h.in index 9593e6bfed..869a74ae85 100644 --- a/include/openssl/ssl.h.in +++ b/include/openssl/ssl.h.in @@ -2266,6 +2266,7 @@ __owur int SSL_net_write_desired(SSL *s); __owur int SSL_set_blocking_mode(SSL *s, int blocking); __owur int SSL_get_blocking_mode(SSL *s); __owur int SSL_set_initial_peer_addr(SSL *s, const BIO_ADDR *peer_addr); +__owur SSL *SSL_get0_connection(SSL *s); #define SSL_STREAM_FLAG_UNI (1U << 0) __owur SSL *SSL_new_stream(SSL *s, uint64_t flags); -- cgit v1.2.1