summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederik Wedel-Heinen <frederik.wedel-heinen@dencrypt.dk>2023-10-13 11:26:35 +0200
committerMatt Caswell <matt@openssl.org>2024-04-23 11:57:05 +0100
commitd58372517cfe99ff70d735a7a086a94b3d8cc927 (patch)
treef5a8ac7a72a7b183b532107354b76503cb1f7324
parent7b941560d76b45b67fe72ac3e548f863e4e63d44 (diff)
Fix protocol list for cmd_Protocol()
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22273)
-rw-r--r--ssl/ssl_conf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/ssl_conf.c b/ssl/ssl_conf.c
index 877275e369..d8de216c9f 100644
--- a/ssl/ssl_conf.c
+++ b/ssl/ssl_conf.c
@@ -285,7 +285,8 @@ static int cmd_Protocol(SSL_CONF_CTX *cctx, const char *value)
SSL_FLAG_TBL_INV("TLSv1.2", SSL_OP_NO_TLSv1_2),
SSL_FLAG_TBL_INV("TLSv1.3", SSL_OP_NO_TLSv1_3),
SSL_FLAG_TBL_INV("DTLSv1", SSL_OP_NO_DTLSv1),
- SSL_FLAG_TBL_INV("DTLSv1.2", SSL_OP_NO_DTLSv1_2)
+ SSL_FLAG_TBL_INV("DTLSv1.2", SSL_OP_NO_DTLSv1_2),
+ SSL_FLAG_TBL_INV("DTLSv1.3", SSL_OP_NO_DTLSv1_3)
};
cctx->tbl = ssl_protocol_list;
cctx->ntbl = OSSL_NELEM(ssl_protocol_list);