Skip to content
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

Add a loss_time per packet number space #2451

Merged
merged 10 commits into from Feb 20, 2019
5 changes: 1 addition & 4 deletions draft-ietf-quic-recovery.md
Expand Up @@ -1082,11 +1082,8 @@ OnLossDetectionTimeout():
if (loss_time != 0):
// Time threshold loss Detection
DetectLostPackets(pn_space)
SetLossDetectionTimer()
return
// Don't retransmit all crypto data if a packet was just lost.
ianswett marked this conversation as resolved.
Show resolved Hide resolved
if (!packets_lost &&
crypto packets are in flight):
else if (crypto packets are in flight):
// Crypto retransmission timeout.
RetransmitUnackedCryptoData()
crypto_count++
Expand Down