Files
netbird/client/cmd/service_socket_perms_other.go
Theodor S. Midtlien f44040feb0 WIP
2026-07-21 17:15:15 +02:00

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
}