Skip to content

Commit

Permalink
congestion/cubic.go: increased max window to 10000 fully sized packets
Browse files Browse the repository at this point in the history
  • Loading branch information
cooldogedev committed Oct 11, 2024
1 parent f899fb6 commit 74f86aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/congestion/cubic.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

const (
initialWindow = protocol.MaxPacketSize * 32
maxWindow = 1000000
maxWindow = protocol.MaxPacketSize * 10000

cubicC = 0.7
cubicBeta = 0.4
Expand Down

0 comments on commit 74f86aa

Please sign in to comment.