mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-06 16:25:50 +00:00

Android >= 14 forbids the use of netlink sockets. Fixes #9836 Signed-off-by: David Anderson <dave@tailscale.com>
13 lines
234 B
Go
13 lines
234 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !linux || android
|
|
|
|
package tstun
|
|
|
|
import "github.com/tailscale/wireguard-go/tun"
|
|
|
|
func setLinkAttrs(iface tun.Device) error {
|
|
return nil
|
|
}
|