Handle multirecord messages in handshake.#1
Open
aodanne wants to merge 3 commits intocontiki-ng:masterfrom
Open
Handle multirecord messages in handshake.#1aodanne wants to merge 3 commits intocontiki-ng:masterfrom
aodanne wants to merge 3 commits intocontiki-ng:masterfrom
Conversation
|
Does it involve handling multiple flights in single record. Or dividing single flight into multiple records ? |
Author
|
It handels multiple flights in a single record.
I used the SSL server in Erlang/OTP in my application and found that it
packed 3 flights in one transmission
which tinydtls not understood. I just decoded the first flight and the got
confused over the extra bytes.
///Anders
Den sön 31 maj 2020 kl 04:22 skrev Simpy Parveen <notifications@github.com>:
… Does it involve handling multiple flights in single record. Or dividing
single flight into multiple records ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA3VJG2IJPF3XWHPBWNFQ4LRUG5NPANCNFSM4EOU2ATQ>
.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This only handles a combined handshake message starting with server_hello.
E.g a flight with:
2: server_hello
12 server_key_exchange
14 server hello done
This could be generalized to any message.