From db1f199a1128acb32ac1f42e86bb4b59384976f8 Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Tue, 21 Feb 2023 14:37:20 +0100 Subject: [PATCH] Add comment about keyshare negotiation --- src/dtls.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dtls.c b/src/dtls.c index da1883129..4238d55ad 100644 --- a/src/dtls.c +++ b/src/dtls.c @@ -719,6 +719,7 @@ static int SendStatelessReplyDtls13(const WOLFSSL* ssl, WolfSSL_CH* ch) "SupportedGroups."); ERROR_OUT(INCOMPLETE_DATA, dtls13_cleanup); } + /* TLSX_KeyShare_Choose is done deep inside MatchSuite_ex */ ret = MatchSuite_ex(ssl, &suites, &cs, parsedExts); if (ret < 0) { WOLFSSL_MSG("Unsupported cipher suite, ClientHello");