mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
only send Version Negotiation packets for packets larger than 1200 bytes
This commit is contained in:
parent
fb22bb38ea
commit
0615d92ede
3 changed files with 35 additions and 1 deletions
|
@ -64,6 +64,10 @@ const MaxReceivePacketSize ByteCount = 1452
|
|||
// MinInitialPacketSize is the minimum size an Initial packet is required to have.
|
||||
const MinInitialPacketSize = 1200
|
||||
|
||||
// MinUnknownVersionPacketSize is the minimum size a packet with an unknown version
|
||||
// needs to have in order to trigger a Version Negotiation packet.
|
||||
const MinUnknownVersionPacketSize = MinInitialPacketSize
|
||||
|
||||
// MinStatelessResetSize is the minimum size of a stateless reset packet that we send
|
||||
const MinStatelessResetSize = 1 /* first byte */ + 20 /* max. conn ID length */ + 4 /* max. packet number length */ + 1 /* min. payload length */ + 16 /* token */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue