Skip to content

Commit

Permalink
Update based on comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ianswett committed May 16, 2020
1 parent 2a479f6 commit 75aeb2f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions draft-ietf-quic-recovery.md
Expand Up @@ -1142,20 +1142,20 @@ Pseudocode for OnPacketSent follows:
SetLossDetectionTimer()
~~~

## On Receiving a Packet
## On Receiving a Datagram

When a packet is received, it may allow the server to send
if the server was previously amplification limited.
When a datagram is received, it may allow the server to send
if the server was previously amplification limited, even if
none of the packets in it can be processed.

Psuedocode for OnPacketReceived follows:
Pseudocode for OnDatagramReceived follows:

~~~
OnPacketReceived(packet):
OnDatagramReceived(datagram):
// If this packet unblocks the server, arm the
// timer to ensure forward progress resumes
// PTO timer to avoid deadlock.
if (server was at anti-amplification limit):
SetLossDetectionTimer()
DecryptAndProcessFrames()
~~~

## On Receiving an Acknowledgment
Expand Down

0 comments on commit 75aeb2f

Please sign in to comment.