mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 11:35:35 +00:00
048cb61dd0
-Move Android impl into interfaces_android.go -Instead of using ip route to get the interface name, use the one passed in by Android (ip route is restricted in Android 13+ per termux/termux-app#2993) Follow-up will be to do the same for router Fixes tailscale/corp#19215 Fixes tailscale/corp#19124 Signed-off-by: kari-ts <kari@tailscale.com>
15 lines
312 B
Go
15 lines
312 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !linux && !windows && !darwin && !freebsd && !android
|
|
|
|
package interfaces
|
|
|
|
import "errors"
|
|
|
|
var errTODO = errors.New("TODO")
|
|
|
|
func defaultRoute() (DefaultRouteDetails, error) {
|
|
return DefaultRouteDetails{}, errTODO
|
|
}
|