From e7208219a91deaeffa9e84feed2ac525613eb1a6 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sat, 9 May 2020 09:14:19 +0700 Subject: [PATCH] reduce the length of the unprocessed packet chan in the session --- internal/protocol/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/protocol/params.go b/internal/protocol/params.go index b762b2b6..838010f9 100644 --- a/internal/protocol/params.go +++ b/internal/protocol/params.go @@ -43,7 +43,7 @@ const DefaultMaxIncomingUniStreams = 100 const MaxServerUnprocessedPackets = 1024 // MaxSessionUnprocessedPackets is the max number of packets stored in each session that are not yet processed. -const MaxSessionUnprocessedPackets = MaxCongestionWindowPackets +const MaxSessionUnprocessedPackets = 256 // SkipPacketAveragePeriodLength is the average period length in which one packet number is skipped to prevent an Optimistic ACK attack const SkipPacketAveragePeriodLength PacketNumber = 500