Skip to content

Commit

Permalink
a workaround for the 65 limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
kazu-yamamoto committed Jul 29, 2020
1 parent d884e02 commit 83eece7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion draft-ietf-quic-recovery.md
Expand Up @@ -1593,7 +1593,8 @@ Invoked when an ACK frame with an ECN section is received from the peer.
// this could be a new congestion event.
if (ack.ce_counter > ecn_ce_counters[pn_space]):
ecn_ce_counters[pn_space] = ack.ce_counter
OnCongestionEvent(sent_packets[ack.largest_acked].time_sent)
sent_time = sent_packets[ack.largest_acked].time_sent
OnCongestionEvent(sent_time)
~~~


Expand Down

0 comments on commit 83eece7

Please sign in to comment.