Skip to content

Commit

Permalink
gbn: set default resend & handshake timeouts to 1s
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorTigerstrom committed Nov 21, 2023
1 parent a5a0157 commit f39b75d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gbn/timeout_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
)

const (
defaultHandshakeTimeout = 100 * time.Millisecond
defaultResendTimeout = 100 * time.Millisecond
minimumResendTimeout = 100 * time.Millisecond
defaultHandshakeTimeout = 1000 * time.Millisecond
defaultResendTimeout = 1000 * time.Millisecond
minimumResendTimeout = 1000 * time.Millisecond
defaultFinSendTimeout = 1000 * time.Millisecond
defaultResendMultiplier = 5
DefaultSendTimeout = math.MaxInt64
Expand Down

0 comments on commit f39b75d

Please sign in to comment.