Skip to content
Snippets Groups Projects
Commit 3618b91e authored by Gijs Peskens's avatar Gijs Peskens
Browse files

Always honour minimum delay before sending NACK.

Prevents spurious NACKS when lots of reordering is happening.
parent f8e664f8
No related branches found
No related tags found
1 merge request!155Always honour minimum delay before sending NACK.
Pipeline #91267 failed with stages
in 4 minutes and 44 seconds
......@@ -22,7 +22,7 @@ void rist_receiver_missing(struct rist_flow *f, struct rist_peer *peer,uint64_t
m->seq = seq;
m->insertion_time = nack_time;
m->next_nack = nack_time + (uint64_t)rtt * (uint64_t)RIST_CLOCK;
m->next_nack = now + (uint64_t)rtt * (uint64_t)RIST_CLOCK;
m->peer = peer;
if (get_cctx(peer)->debug)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment