mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Fix issue with renego & resend
This commit is contained in:
committed by
Paul Bakker
parent
8cc7e03ae0
commit
23b7b703aa
@ -248,6 +248,13 @@
|
||||
|
||||
/*
|
||||
* DTLS retransmission states, see RFC 6347 4.2.4
|
||||
*
|
||||
* Warning: the state is sometimes explicit sometimes implicit!
|
||||
* - PREPARING is explicit (but could be implicit from ssl->state)
|
||||
* - SENDING is merged in PREPARING for initial sends, explicit for resends
|
||||
* - WAITING is usually implicit from ssl->state, except after resend
|
||||
* - FINISHED is explicit (but could be implicit from state)
|
||||
* TODO-DTLS: clean that up
|
||||
*/
|
||||
#define SSL_RETRANS_PREPARING 0
|
||||
#define SSL_RETRANS_SENDING 1
|
||||
|
Reference in New Issue
Block a user