Skip to content

Commit

Permalink
congestion/cubic.go: updated cubic constants
Browse files Browse the repository at this point in the history
  • Loading branch information
cooldogedev committed Oct 11, 2024
1 parent 9658cea commit eeb6682
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/congestion/cubic.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const (
minWindow = protocol.MaxPacketSize * 2
maxWindow = protocol.MaxPacketSize * 10000

cubicBeta = 0.4
cubicC = 0.7
cubicBeta = 0.7
cubicC = 0.4
)

type Cubic struct {
Expand Down

0 comments on commit eeb6682

Please sign in to comment.