sockets.go 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Package sockets provides helper functions to create and configure Unix or TCP sockets.
  2. package sockets
  3. import (
  4. "errors"
  5. "net"
  6. "net/http"
  7. "time"
  8. )
  9. // Why 32? See https://github.com/docker/docker/pull/8035.
  10. const defaultTimeout = 32 * time.Second
  11. // ErrProtocolNotAvailable is returned when a given transport protocol is not provided by the operating system.
  12. var ErrProtocolNotAvailable = errors.New("protocol not available")
  13. // ConfigureTransport configures the specified Transport according to the
  14. // specified proto and addr.
  15. // If the proto is unix (using a unix socket to communicate) or npipe the
  16. // compression is disabled.
  17. func ConfigureTransport(tr *http.Transport, proto, addr string) error {
  18. switch proto {
  19. case "unix":
  20. return configureUnixTransport(tr, proto, addr)
  21. case "npipe":
  22. return configureNpipeTransport(tr, proto, addr)
  23. default:
  24. tr.Proxy = http.ProxyFromEnvironment
  25. dialer, err := DialerFromEnvironment(&net.Dialer{
  26. Timeout: defaultTimeout,
  27. })
  28. if err != nil {
  29. return err
  30. }
  31. tr.Dial = dialer.Dial
  32. }
  33. return nil
  34. }