2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-09-10 18:40:02 +00:00
|
|
|
|
|
|
|
// Package tsconst exports some constants used elsewhere in the
|
|
|
|
// codebase.
|
|
|
|
package tsconst
|
|
|
|
|
|
|
|
// WintunInterfaceDesc is the description attached to Tailscale
|
2021-11-08 06:58:09 +00:00
|
|
|
// interfaces on Windows. This is set by the WinTun driver.
|
2020-09-10 18:40:02 +00:00
|
|
|
const WintunInterfaceDesc = "Tailscale Tunnel"
|
2021-11-08 06:58:09 +00:00
|
|
|
const WintunInterfaceDesc0_14 = "Wintun Userspace Tunnel"
|
2024-08-14 15:34:53 +00:00
|
|
|
|
|
|
|
// TailnetLockNotTrustedMsg is the error message used by network lock
|
|
|
|
// and sniffed (via substring) out of an error sent over the network.
|
|
|
|
const TailnetLockNotTrustedMsg = "this node is not trusted by network lock"
|