Hans Leidekker : secur32/tests: Check supported DTLS protocols.
Module: wine Branch: master Commit: 5e8acd7a044d09539aa978ff9401575a13a3ebda URL: https://source.winehq.org/git/wine.git/?a=commit;h=5e8acd7a044d09539aa978ff9... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Thu Oct 28 20:19:25 2021 +0200 secur32/tests: Check supported DTLS protocols. Signed-off-by: Hans Leidekker <hans(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/secur32/tests/schannel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c index aeb38096f0c..b7f9d409d41 100644 --- a/dlls/secur32/tests/schannel.c +++ b/dlls/secur32/tests/schannel.c @@ -203,6 +203,8 @@ static void test_supported_protocols(CredHandle *handle, unsigned exprots) X(SP_PROT_TLS1_1_CLIENT, "TLS 1.1 client"); X(SP_PROT_TLS1_2_CLIENT, "TLS 1.2 client"); X(SP_PROT_TLS1_3_CLIENT, "TLS 1.3 client"); + X(SP_PROT_DTLS1_0_CLIENT, "DTLS 1.0 client"); + X(SP_PROT_DTLS1_2_CLIENT, "DTLS 1.2 client"); #undef X if(protocols.grbitProtocol)
participants (1)
-
Alexandre Julliard