mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
implement issuing and retiring of connection IDs
This commit is contained in:
parent
35ea8213c5
commit
121795977d
3 changed files with 184 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue