… and change a bit the method signature Signed-off-by: Vincent Demeester <vincent@sbr.pm> Upstream-commit: 42f6fdf059807ecbe66cce90676021363a541154 Component: engine
13 lines
188 B
Go
13 lines
188 B
Go
// +build !windows
|
|
|
|
package request
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
func npipeDial(path string, timeout time.Duration) (net.Conn, error) {
|
|
panic("npipe protocol only supported on Windows")
|
|
}
|