diff options
-rw-r--r-- | src/regress/lib/libssl/unit/ssl_methods.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/unit/ssl_methods.c b/src/regress/lib/libssl/unit/ssl_methods.c index 163d22c55f..216ba937e1 100644 --- a/src/regress/lib/libssl/unit/ssl_methods.c +++ b/src/regress/lib/libssl/unit/ssl_methods.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_methods.c,v 1.2 2020/12/01 08:05:06 tb Exp $ */ | 1 | /* $OpenBSD: ssl_methods.c,v 1.3 2021/04/04 20:16:29 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2020 Theo Buehler <tb@openbsd.org> | 3 | * Copyright (c) 2020 Theo Buehler <tb@openbsd.org> |
4 | * | 4 | * |
@@ -142,6 +142,25 @@ struct ssl_method_test_data ssl_method_tests[] = { | |||
142 | }, | 142 | }, |
143 | 143 | ||
144 | { | 144 | { |
145 | .method = DTLSv1_2_method, | ||
146 | .name = "DTLSv1_2_method", | ||
147 | .server = 1, | ||
148 | .dtls = 1, | ||
149 | }, | ||
150 | { | ||
151 | .method = DTLSv1_2_server_method, | ||
152 | .name = "DTLSv1_2_server_method", | ||
153 | .server = 1, | ||
154 | .dtls = 1, | ||
155 | }, | ||
156 | { | ||
157 | .method = DTLSv1_2_client_method, | ||
158 | .name = "DTLSv1_2_client_method", | ||
159 | .server = 0, | ||
160 | .dtls = 1, | ||
161 | }, | ||
162 | |||
163 | { | ||
145 | .method = DTLS_method, | 164 | .method = DTLS_method, |
146 | .name = "DTLS_method", | 165 | .name = "DTLS_method", |
147 | .server = 1, | 166 | .server = 1, |