1
0
Fork 0
mirror of https://github.com/Luzifer/yaml-vault.git synced 2024-10-19 15:24:23 +00:00
yaml-vault/vendor/github.com/hashicorp/go-cleanhttp/cleanhttp.go

29 lines
630 B
Go
Raw Normal View History

2016-07-11 14:57:04 +00:00
package cleanhttp
import (
"net"
"net/http"
"time"
)
// DefaultTransport returns a new http.Transport with the same default values
// as http.DefaultTransport
func DefaultTransport() *http.Transport {
return &http.Transport{
Proxy: http.ProxyFromEnvironment,
Dial: (&net.Dialer{
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).Dial,
TLSHandshakeTimeout: 10 * time.Second,
}
}
// DefaultClient returns a new http.Client with the same default values as
// http.Client, but with a non-shared Transport
func DefaultClient() *http.Client {
return &http.Client{
Transport: DefaultTransport(),
}
}