netbird/iface/uapi_windows.go

12 lines
163 B
Go
Raw Normal View History

package iface
import (
"net"
"golang.zx2c4.com/wireguard/ipc"
)
func openUAPI(deviceName string) (net.Listener, error) {
return ipc.UAPIListen(deviceName)
}