Skip to content

Commit

Permalink
Reduce RTO.Initial to 1 second
Browse files Browse the repository at this point in the history
This is the default in RFC 9260.
  • Loading branch information
tuexen authored and Sean-Der committed Feb 22, 2024
1 parent 932b71a commit 5359da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtx_timer.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

const (
rtoInitial float64 = 3.0 * 1000 // msec
rtoInitial float64 = 1.0 * 1000 // msec
rtoMin float64 = 1.0 * 1000 // msec
rtoMax float64 = 60.0 * 1000 // msec
rtoAlpha float64 = 0.125
Expand Down

0 comments on commit 5359da5

Please sign in to comment.