Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067 Component: engine
13 lines
251 B
Go
13 lines
251 B
Go
package request // import "github.com/docker/docker/integration-cli/request"
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/Microsoft/go-winio"
|
|
)
|
|
|
|
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
|
|
return winio.DialPipe(path, &timeout)
|
|
}
|