mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
use PacketNumberGenerator in PacketPacker
This commit is contained in:
parent
86d73970fc
commit
78fab5c264
3 changed files with 34 additions and 6 deletions
|
@ -44,6 +44,9 @@ const MaxSessionUnprocessedPackets = 128
|
|||
// RetransmissionThreshold + 1 is the number of times a packet has to be NACKed so that it gets retransmitted
|
||||
const RetransmissionThreshold uint8 = 3
|
||||
|
||||
// SkipPacketAveragePeriodLength is the average period length in which one packet number is skipped to prevent an Optimistic ACK attack
|
||||
const SkipPacketAveragePeriodLength PacketNumber = 500
|
||||
|
||||
// STKExpiryTimeSec is the valid time of a source address token in seconds
|
||||
const STKExpiryTimeSec = 24 * 60 * 60
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue