mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
increase packet queue size to work around #304
This commit is contained in:
parent
eabd38238a
commit
90401a2ec1
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ const MaxNewStreamIDDelta = 4 * MaxStreamsPerConnection
|
|||
const MaxIdleConnectionStateLifetime = 60 * time.Second
|
||||
|
||||
// MaxSessionUnprocessedPackets is the max number of packets stored in each session that are not yet processed.
|
||||
const MaxSessionUnprocessedPackets = 128
|
||||
const MaxSessionUnprocessedPackets = 2000
|
||||
|
||||
// RetransmissionThreshold + 1 is the number of times a packet has to be NACKed so that it gets retransmitted
|
||||
const RetransmissionThreshold = 3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue