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 Dec 1, 2023
1 parent 4fff349 commit ab14cd6
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
defaultTimeoutUpdateFrequency = 100
Expand Down

0 comments on commit ab14cd6

Please sign in to comment.