-
Notifications
You must be signed in to change notification settings - Fork 866
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
[core] Fixed getFlighSpan function and rexmit bug #1613
Merged
maxsharabayko
merged 5 commits into
Haivision:master
from
maxsharabayko:hotfix/fastrexmit-issue1000
Oct 21, 2020
Merged
[core] Fixed getFlighSpan function and rexmit bug #1613
maxsharabayko
merged 5 commits into
Haivision:master
from
maxsharabayko:hotfix/fastrexmit-issue1000
Oct 21, 2020
Conversation
This file contains 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
maxsharabayko
added
Type: Bug
Indicates an unexpected problem or unintended behavior
[core]
Area: Changes in SRT library core
labels
Oct 19, 2020
ethouris
reviewed
Oct 19, 2020
ethouris
reviewed
Oct 19, 2020
ethouris
reviewed
Oct 19, 2020
ethouris
reviewed
Oct 19, 2020
ethouris
reviewed
Oct 19, 2020
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 fix as for me should be ok as is - as far as I could understand it. You can consider some proposed improvements.
A notable help in investigating the issue: Co-authored-by: CommonsNat <CommonsNat@hotmail.com>
ethouris
approved these changes
Oct 21, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
[core]
Area: Changes in SRT library core
Priority: Critical
Type: Bug
Indicates an unexpected problem or unintended behavior
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.
Scope
In short, SRT sender may hang up under certain conditions if the receiver does not send loss reports periodically.
It means the receiver is either SRT version prior to v1.3.0 (didn’t have PeriodicNAK) or disables Periodic NAK explicitly (SRTO_NAKREPORTS option).
The issue found by @CommonsNat in #1000 was introduced in PR #1181 (Mar 17, 2020) with the new
getFlightSpan()
utility function. The function was later modified in #1190.Only SRT v1.4.2 is affected by the bug which this PR fixes.
To Reproduce
See this and this comments.
TODO:
Fixing the getFlighSpan()
The lowest value returned by the
getFlightSpan()
was1
, while0
is expected if there are no packets in flight.The fixed version:
About the Breaking Change in PR 1181
The condition in
CUDT::checkRexmitTimer(..)
:in #1181 was replaced by:
essentially identical to
CSeqNo::seqlen(m_iSndLastAck, CSeqNo::incseq(m_iSndCurrSeqNo));