mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-28 10:31:29 +02:00
12 lines
298 B
Go
12 lines
298 B
Go
//go:build windows
|
|
|
|
package cmd
|
|
|
|
import "net"
|
|
|
|
// secureDaemonListener is a no-op on Windows: the named-pipe SDDL gates who may
|
|
// connect (Layer 1), and the pipe client token supplies per-RPC identity.
|
|
func secureDaemonListener(l *socketListener) (net.Listener, error) {
|
|
return l.Listener, nil
|
|
}
|