mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-04 11:35:11 -04:00
16 lines
305 B
Go
16 lines
305 B
Go
//go:build !windows
|
|
|
|
package daemonaddr
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
)
|
|
|
|
// dialPipePaths is Windows-only: no other platform serves the daemon on a named
|
|
// pipe.
|
|
func dialPipePaths(context.Context, []string) (net.Conn, error) {
|
|
return nil, fmt.Errorf("named pipes are only supported on Windows")
|
|
}
|