91f0adef10
* Added the ability to pass timeout settings from cmd/uplink to libuplink. * Removed commented out code. * Updated 2min timeouts for the uplink CLI. * Removed comment. * Made transport defaultDialTimeout and defaultRequestTimeout public * Added comments to describe where these defaults apply. * Added a new defaults to libuplink and added tests. * Added a new defaults to libuplink and added tests.
26 lines
608 B
Go
26 lines
608 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package transport
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/zeebo/errs"
|
|
monkit "gopkg.in/spacemonkeygo/monkit.v2"
|
|
)
|
|
|
|
var (
|
|
mon = monkit.Package()
|
|
//Error is the errs class of standard Transport Client errors
|
|
Error = errs.Class("transport error")
|
|
)
|
|
|
|
const (
|
|
// defaultTransportDialTimeout is the default time to wait for a connection to be established.
|
|
defaultTransportDialTimeout = 20 * time.Second
|
|
|
|
// defaultTransportRequestTimeout is the default time to wait for a response.
|
|
defaultTransportRequestTimeout = 20 * time.Second
|
|
)
|