Sign in
cos
/
third_party
/
docker
/
refs/heads/release-R133
/
.
/
testutil
/
request
/
npipe_windows.go
blob: 9741ae64c6534ddbf3692de16b8f946c51f1571a [
file
] [
edit
]
package request
import (
"net"
"time"
winio "github.com/Microsoft/go-winio"
)
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
return winio.DialPipe(path, &timeout)
}