mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
23 lines
524 B
Go
23 lines
524 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"net/http"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func ConfigureTCPTransport(tr *http.Transport, proto, addr string) {
|
||
|
// Why 32? See https://github.com/docker/docker/pull/8035.
|
||
|
timeout := 32 * time.Second
|
||
|
if proto == "unix" {
|
||
|
// No need for compression in local communications.
|
||
|
tr.DisableCompression = true
|
||
|
tr.Dial = func(_, _ string) (net.Conn, error) {
|
||
|
return net.DialTimeout(proto, addr, timeout)
|
||
|
}
|
||
|
} else {
|
||
|
tr.Proxy = http.ProxyFromEnvironment
|
||
|
tr.Dial = (&net.Dialer{Timeout: timeout}).Dial
|
||
|
}
|
||
|
}
|