mirror of
https://github.com/rclone/rclone
synced 2024-11-01 21:49:35 +01:00
0cb9bb3b54
* Insert User-Agent in Transport - fixes #199 * Update timeouts to use Context * Modernise transport
32 lines
661 B
Go
32 lines
661 B
Go
// HTTP parts pre go1.7
|
|
|
|
//+build !go1.7
|
|
|
|
package fs
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
// dial with timeouts
|
|
func dialTimeout(network, address string, connectTimeout, timeout time.Duration) (net.Conn, error) {
|
|
dialer := net.Dialer{
|
|
Timeout: connectTimeout,
|
|
KeepAlive: 30 * time.Second,
|
|
}
|
|
c, err := dialer.Dial(network, address)
|
|
if err != nil {
|
|
return c, err
|
|
}
|
|
return newTimeoutConn(c, timeout), nil
|
|
}
|
|
|
|
// Initialise the http.Transport for pre go1.7
|
|
func (ci *ConfigInfo) initTransport(t *http.Transport) {
|
|
t.Dial = func(network, address string) (net.Conn, error) {
|
|
return dialTimeout(network, address, ci.ConnectTimeout, ci.Timeout)
|
|
}
|
|
}
|