summaryrefslogtreecommitdiffhomepage
path: root/prober/tun_default.go
blob: 2094e19933c069b5baa9477a3dff89e526a953f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Tailscale Inc & contributors
// SPDX-License-Identifier: BSD-3-Clause

//go:build !linux && !darwin

package prober

import (
	"fmt"
	"net/netip"
	"runtime"
)

const tunName = "unused"

func configureTUN(addr netip.Prefix, tunname string) error {
	return fmt.Errorf("not implemented on " + runtime.GOOS)
}