don't block the server when too many packets are queued in a session

fixes #35
This commit is contained in:
Lucas Clemente 2016-05-17 16:52:55 +02:00
parent 68b529a54c
commit 15e7fe6c73
3 changed files with 18 additions and 2 deletions

View file

@ -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