sockets_unix.go 840 B

1234567891011121314151617181920212223242526272829303132333435
  1. // +build !windows
  2. package sockets
  3. import (
  4. "fmt"
  5. "net"
  6. "net/http"
  7. "syscall"
  8. "time"
  9. )
  10. const maxUnixSocketPathSize = len(syscall.RawSockaddrUnix{}.Path)
  11. func configureUnixTransport(tr *http.Transport, proto, addr string) error {
  12. if len(addr) > maxUnixSocketPathSize {
  13. return fmt.Errorf("Unix socket path %q is too long", addr)
  14. }
  15. // No need for compression in local communications.
  16. tr.DisableCompression = true
  17. tr.Dial = func(_, _ string) (net.Conn, error) {
  18. return net.DialTimeout(proto, addr, defaultTimeout)
  19. }
  20. return nil
  21. }
  22. func configureNpipeTransport(tr *http.Transport, proto, addr string) error {
  23. return ErrProtocolNotAvailable
  24. }
  25. // DialPipe connects to a Windows named pipe.
  26. // This is not supported on other OSes.
  27. func DialPipe(_ string, _ time.Duration) (net.Conn, error) {
  28. return nil, syscall.EAFNOSUPPORT
  29. }