summaryrefslogtreecommitdiffstats
path: root/ssl/tls13_enc.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2020-07-24 13:47:35 -0700
committerMatt Caswell <matt@openssl.org>2020-08-31 09:34:19 +0100
commitc34ca13a60f2acb4509be0aec9f506853ffbd1ea (patch)
tree123b7cd5ebd0450349953cb68699c837f87063ed /ssl/tls13_enc.c
parent23e77b0ba328afe3492d990cd24f7b8896b4246f (diff)
Add a ktls_crypto_info_t typedef.
This type is defined to hold the OS-specific structure passed to BIO_set_ktls. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12111)
Diffstat (limited to 'ssl/tls13_enc.c')
-rw-r--r--ssl/tls13_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/tls13_enc.c b/ssl/tls13_enc.c
index ba385f6ea2..75034f5179 100644
--- a/ssl/tls13_enc.c
+++ b/ssl/tls13_enc.c
@@ -517,7 +517,7 @@ int tls13_change_cipher_state(SSL *s, int which)
const EVP_CIPHER *cipher = NULL;
#if !defined(OPENSSL_NO_KTLS) && defined(OPENSSL_KTLS_TLS13)
# ifndef __FreeBSD__
- struct tls_crypto_info_all crypto_info;
+ ktls_crypto_info_t crypto_info;
BIO *bio;
# endif
#endif