2017-05-01 17:30:52 +00:00
|
|
|
package backend
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
2017-07-23 12:21:03 +00:00
|
|
|
|
|
|
|
"github.com/restic/restic/internal/debug"
|
2017-05-01 17:30:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Transport returns a new http.RoundTripper with default settings applied.
|
|
|
|
func Transport() http.RoundTripper {
|
|
|
|
// copied from net/http
|
|
|
|
tr := &http.Transport{
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
DialContext: (&net.Dialer{
|
|
|
|
Timeout: 30 * time.Second,
|
|
|
|
KeepAlive: 30 * time.Second,
|
|
|
|
DualStack: true,
|
|
|
|
}).DialContext,
|
|
|
|
MaxIdleConns: 100,
|
2017-05-31 17:39:19 +00:00
|
|
|
MaxIdleConnsPerHost: 100,
|
2017-05-01 17:30:52 +00:00
|
|
|
IdleConnTimeout: 90 * time.Second,
|
|
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
|
|
}
|
|
|
|
|
|
|
|
// wrap in the debug round tripper
|
|
|
|
return debug.RoundTripper(tr)
|
|
|
|
}
|