You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How is the retransmission of handshake messages done in tinydtls? Based on my testing (by dropping a handshake message manually on the client), there is currently no retransmission done automatically.
Do I need to call dtls_check_retransmit() after a certain period after sending the handshake message?
Also, I found the following in dtls.c. Does this mean that retransmitting handshake messages is still not supported?
dtls_check_retransmit() needs to be called periodically by a higher layer (unless if you have a CONTIKI environment which starts off a coap_retransmit_process thread) to see if any packet re-transmission is required. next returns the time dtls_check_retransmit() should next be called.
@peyton-li You need to be more specific as to what the problems are.
How is the retransmission of handshake messages done in tinydtls? Based on my testing (by dropping a handshake message manually on the client), there is currently no retransmission done automatically.
Do I need to call
dtls_check_retransmit()
after a certain period after sending the handshake message?Also, I found the following in
dtls.c
. Does this mean that retransmitting handshake messages is still not supported?tinydtls/dtls.c
Lines 1649 to 1651 in d99fb8c
The text was updated successfully, but these errors were encountered: