From d8a01c6f8b494d806f4cbb2f8be2e409f6e96138 Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Thu, 21 Jan 2021 11:22:52 +0100 Subject: [PATCH] DTLS: client re-send on duplicate HelloRequest as well --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index c9c0a5676..e2fdbcc71 100644 --- a/src/internal.c +++ b/src/internal.c @@ -7328,7 +7328,7 @@ int VerifyForDtlsMsgPoolSend(WOLFSSL* ssl, byte type, word32 fragOffset) ((ssl->options.verifyPeer) && (type == certificate)) || ((!ssl->options.verifyPeer) && (type == client_key_exchange)))) || ((ssl->options.side == WOLFSSL_CLIENT_END) && - (type == server_hello)))); + (type == hello_request || type == server_hello)))); }