sockets_windows.go 625 B

123456789101112131415161718192021222324252627
  1. package sockets
  2. import (
  3. "net"
  4. "net/http"
  5. "time"
  6. "github.com/Microsoft/go-winio"
  7. )
  8. func configureUnixTransport(tr *http.Transport, proto, addr string) error {
  9. return ErrProtocolNotAvailable
  10. }
  11. func configureNpipeTransport(tr *http.Transport, proto, addr string) error {
  12. // No need for compression in local communications.
  13. tr.DisableCompression = true
  14. tr.Dial = func(_, _ string) (net.Conn, error) {
  15. return DialPipe(addr, defaultTimeout)
  16. }
  17. return nil
  18. }
  19. // DialPipe connects to a Windows named pipe.
  20. func DialPipe(addr string, timeout time.Duration) (net.Conn, error) {
  21. return winio.DialPipe(addr, &timeout)
  22. }