initiate a key update after sending / receiving 100000 packets

This commit is contained in:
Marten Seemann 2019-06-13 16:24:06 +08:00
parent 73d5d83a1d
commit a09c045324
5 changed files with 156 additions and 74 deletions

View file

@ -139,3 +139,6 @@ const MaxAckDelay = 25 * time.Millisecond
// MaxAckDelayInclGranularity is the max_ack_delay including the timer granularity.
// This is the value that should be advertised to the peer.
const MaxAckDelayInclGranularity = MaxAckDelay + TimerGranularity
// KeyUpdateInterval is the maximum number of packets we send or receive before initiating a key udpate.
const KeyUpdateInterval = 100 * 1000