delete 0-RTT queues if no Initial is received within 100ms

This commit is contained in:
Marten Seemann 2020-01-03 16:32:19 +07:00
parent 2b7133a6e2
commit ba095dd3ff
3 changed files with 40 additions and 13 deletions

View file

@ -159,6 +159,9 @@ const MaxAckDelayInclGranularity = MaxAckDelay + TimerGranularity
// KeyUpdateInterval is the maximum number of packets we send or receive before initiating a key udpate.
const KeyUpdateInterval = 100 * 1000
// Max0RTTQueueingDuration is the maximum time that we store 0-RTT packets in order to wait for the corresponding Initial to be received.
const Max0RTTQueueingDuration = 100 * time.Millisecond
// Max0RTTQueues is the maximum number of connections that we buffer 0-RTT packets for.
const Max0RTTQueues = 32