mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
don't block the server when too many packets are queued in a session
fixes #35
This commit is contained in:
parent
68b529a54c
commit
15e7fe6c73
3 changed files with 18 additions and 2 deletions
|
@ -49,3 +49,6 @@ const WindowUpdateThreshold = ReceiveStreamFlowControlWindow / 2
|
|||
|
||||
// WindowUpdateNumRepitions is the number of times the same WindowUpdate frame will be sent to the client
|
||||
const WindowUpdateNumRepitions uint8 = 2
|
||||
|
||||
// MaxSessionUnprocessedPackets is the max number of packets stored in each session that are not yet processed.
|
||||
const MaxSessionUnprocessedPackets = 128
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue