mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
set max tracked packets to max cwnd * 2
This commit is contained in:
parent
3b1231db81
commit
8c6eb61850
6 changed files with 9 additions and 12 deletions
|
@ -274,7 +274,7 @@ func (h *sentPacketHandler) CongestionAllowsSending() bool {
|
|||
|
||||
func (h *sentPacketHandler) CheckForError() error {
|
||||
length := len(h.retransmissionQueue) + h.packetHistory.Len()
|
||||
if uint32(length) > protocol.MaxTrackedSentPackets {
|
||||
if protocol.PacketNumber(length) > protocol.MaxTrackedSentPackets {
|
||||
return ErrTooManyTrackedSentPackets
|
||||
}
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue