summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2021-03-17 17:43:31 +0000
committerjsing <>2021-03-17 17:43:31 +0000
commit9e868129767c1417a49a95902b02d994b6e59cdc (patch)
tree9e15b48d9177e8c586bdb41cd0a6718e90c57569
parente1510f56b263571ac1c6747b5892069e0083afb9 (diff)
downloadopenbsd-9e868129767c1417a49a95902b02d994b6e59cdc.tar.gz
openbsd-9e868129767c1417a49a95902b02d994b6e59cdc.tar.bz2
openbsd-9e868129767c1417a49a95902b02d994b6e59cdc.zip
Update for DTLSv1.2 being enabled.
-rw-r--r--src/regress/lib/libssl/unit/ssl_versions.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/unit/ssl_versions.c b/src/regress/lib/libssl/unit/ssl_versions.c
index 9551ae4130..7ddc0e4a4e 100644
--- a/src/regress/lib/libssl/unit/ssl_versions.c
+++ b/src/regress/lib/libssl/unit/ssl_versions.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_versions.c,v 1.13 2021/03/17 17:23:42 jsing Exp $ */ 1/* $OpenBSD: ssl_versions.c,v 1.14 2021/03/17 17:43:31 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -420,7 +420,7 @@ static struct shared_version_test shared_version_tests[] = {
420 .minver = TLS1_1_VERSION, 420 .minver = TLS1_1_VERSION,
421 .maxver = TLS1_2_VERSION, 421 .maxver = TLS1_2_VERSION,
422 .peerver = DTLS1_2_VERSION, 422 .peerver = DTLS1_2_VERSION,
423 .want_maxver = DTLS1_VERSION, 423 .want_maxver = DTLS1_2_VERSION,
424 }, 424 },
425 { 425 {
426 .ssl_method = DTLS_method, 426 .ssl_method = DTLS_method,
@@ -428,7 +428,7 @@ static struct shared_version_test shared_version_tests[] = {
428 .minver = TLS1_1_VERSION, 428 .minver = TLS1_1_VERSION,
429 .maxver = TLS1_2_VERSION, 429 .maxver = TLS1_2_VERSION,
430 .peerver = 0xfefc, /* DTLSv1.3, probably. */ 430 .peerver = 0xfefc, /* DTLSv1.3, probably. */
431 .want_maxver = DTLS1_VERSION, 431 .want_maxver = DTLS1_2_VERSION,
432 }, 432 },
433 { 433 {
434 .ssl_method = DTLSv1_method, 434 .ssl_method = DTLSv1_method,
@@ -696,7 +696,7 @@ static struct min_max_version_test min_max_version_tests[] = {
696 .minver = DTLS1_VERSION, 696 .minver = DTLS1_VERSION,
697 .maxver = DTLS1_2_VERSION, 697 .maxver = DTLS1_2_VERSION,
698 .want_minver = DTLS1_VERSION, 698 .want_minver = DTLS1_VERSION,
699 .want_maxver = DTLS1_VERSION, 699 .want_maxver = DTLS1_2_VERSION,
700 }, 700 },
701 { 701 {
702 .ssl_method = DTLSv1_method, 702 .ssl_method = DTLSv1_method,