reg/vendor/github.com/docker/docker-ce/components/engine/integration-cli/request/npipe_windows.go
Jess Frazelle 3834c605e5
update deps
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-06 10:32:47 -05:00

13 lines
190 B
Go

package request
import (
"net"
"time"
"github.com/Microsoft/go-winio"
)
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
return winio.DialPipe(path, &timeout)
}