full diff: https://github.com/docker/go-connections/compare/v0.6.0...v0.7.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
19 lines
382 B
Go
19 lines
382 B
Go
package sockets
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
"net/http"
|
|
|
|
"github.com/Microsoft/go-winio"
|
|
)
|
|
|
|
func configureNpipeTransport(tr *http.Transport, addr string) error {
|
|
// No need for compression in local communications.
|
|
tr.DisableCompression = true
|
|
tr.DialContext = func(ctx context.Context, _, _ string) (net.Conn, error) {
|
|
return winio.DialPipeContext(ctx, addr)
|
|
}
|
|
return nil
|
|
}
|