From e5e3c1552360a8e8551a76e06171eab1c9b3da3c Mon Sep 17 00:00:00 2001 From: Frederik Wedel-Heinen Date: Mon, 4 Dec 2023 14:27:23 +0100 Subject: [PATCH] Fix description of version field of ssl connection struct Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/22937) --- ssl/ssl_local.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h index ff5f2f3ce26..6914bc6fd49 100644 --- a/ssl/ssl_local.h +++ b/ssl/ssl_local.h @@ -1228,8 +1228,9 @@ struct ssl_connection_st { SSL *user_ssl; /* - * protocol version (one of SSL2_VERSION, SSL3_VERSION, TLS1_VERSION, - * DTLS1_VERSION) + * protocol version (one of SSL3_VERSION, TLS1_VERSION, TLS1_1_VERSION, + * TLS1_2_VERSION, TLS1_3_VERSION, DTLS1_VERSION, DTLS1_2_VERSION, + * DTLS1_3_VERSION) */ int version; /* -- 2.47.2