-
Notifications
You must be signed in to change notification settings - Fork 865
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated doc with proper description #845
Conversation
docs/handshake.md
Outdated
existed in UDT as "Congestion control class", just implemented slightly | ||
different way. In SRT this mechanism must be set the same way on both sides, | ||
however it's identified by a character string. The symbol for this extension | ||
is `SRT_CMD_CONGESTION`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a feature supported by HSv5 only. This adds functionality that has
existed in UDT as "Congestion control class", but implemented with SRT
workflows and requirements in mind. In SRT, the congestion control
mechanism must be set the same on both sides and is identified by
a character string. The extension type is set to SRT_CMD_CONGESTION
.
docs/handshake.md
Outdated
message mode, with one message per packet). | ||
The extension block for this extension contains the length in 4-byte words of | ||
the contents, whereas the content is comprised of the string extended to full | ||
4-byte numbers that are endian-inverted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The extension block contains the length of the content in 4-byte words. The content
is encoded as a string expressed as 4-byte long big-endian numbers.
docs/handshake.md
Outdated
|
||
The extension block for this extension contains the length in 4-byte words of | ||
the contents, whereas the content is comprised of the string extended to full | ||
4-byte numbers that are endian-inverted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The extension block contains the length of the content in 4-byte words. The content
is encoded as a string expressed as 4-byte long big-endian numbers.
Closes #479
Changed the previous "Smoother" name. Updated reference to Access Control in handshake.md.