]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Add dtls1.3 to ssl_protocol_to_string()
authorFrederik Wedel-Heinen <frederik.wedel-heinen@dencrypt.dk>
Wed, 4 Oct 2023 09:37:10 +0000 (11:37 +0200)
committerTomas Mraz <tomas@openssl.org>
Thu, 9 Jan 2025 15:58:39 +0000 (16:58 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22273)

ssl/ssl_lib.c

index 5afd89c3e9c6f911bbabcec70c01cb1a6e17dedc..46ecdd4f8588c519d959aa753e58dd29fc84680f 100644 (file)
@@ -4970,6 +4970,9 @@ const char *ssl_protocol_to_string(int version)
     case DTLS1_2_VERSION:
         return "DTLSv1.2";
 
+    case DTLS1_3_VERSION:
+        return "DTLSv1.3";
+
     default:
         return "unknown";
     }