DTLS: client re-send on duplicate HelloRequest as well

pull/3671/head
Juliusz Sosinowicz 2021-01-21 11:22:52 +01:00
parent 969de38764
commit d8a01c6f8b
1 changed files with 1 additions and 1 deletions

View File

@ -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))));
}