Merge pull request #7841 from mrdeep1/dtls_downgrade_cid

Support DTLS1.3 downgrade when server supports CID
This commit is contained in:
Daniel Pouzzner
2024-08-09 15:30:20 -05:00
committed by GitHub

View File

@ -29565,6 +29565,10 @@ static int HashSkeData(WOLFSSL* ssl, enum wc_HashType hashType,
#ifdef WOLFSSL_DTLS
if (ssl->options.dtls) {
DtlsMsgPoolReset(ssl);
#ifdef WOLFSSL_DTLS_CID
if (ssl->options.useDtlsCID)
DtlsCIDOnExtensionsParsed(ssl);
#endif /* WOLFSSL_DTLS_CID */
}
#endif