implement issuing and retiring of connection IDs

This commit is contained in:
Marten Seemann 2019-10-29 17:58:46 +07:00
parent 35ea8213c5
commit 121795977d
3 changed files with 184 additions and 0 deletions

View file

@ -136,6 +136,9 @@ const DefaultConnectionIDLength = 4
// MaxActiveConnectionIDs is the number of connection IDs that we're storing.
const MaxActiveConnectionIDs = 4
// MaxIssuedConnectionIDs is the maximum number of connection IDs that we're issuing at the same time.
const MaxIssuedConnectionIDs = 6
// PacketsPerConnectionID is the number of packets we send using one connection ID.
// If the peer provices us with enough new connection IDs, we switch to a new connection ID.
const PacketsPerConnectionID = 10000