mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
11da2a6c9b
The purpose of this is to make it easier to maintain and eventually to allow the rclone backends to be re-used in other projects without having to use the rclone configuration system. The new code layout is documented in CONTRIBUTING.
30 lines
577 B
Go
30 lines
577 B
Go
// HTTP parts pre go1.7
|
|
|
|
//+build !go1.7
|
|
|
|
package fshttp
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
)
|
|
|
|
// dial with timeouts
|
|
func dialTimeout(network, address string, ci *fs.ConfigInfo) (net.Conn, error) {
|
|
dialer := NewDialer(ci)
|
|
c, err := dialer.Dial(network, address)
|
|
if err != nil {
|
|
return c, err
|
|
}
|
|
return newTimeoutConn(c, ci.Timeout), nil
|
|
}
|
|
|
|
// Initialise the http.Transport for pre go1.7
|
|
func initTransport(ci *fs.ConfigInfo, t *http.Transport) {
|
|
t.Dial = func(network, addr string) (net.Conn, error) {
|
|
return dialTimeout(network, addr, ci)
|
|
}
|
|
}
|