mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
4c2e978f1e
Fixes tailscale/corp#22356 Change-Id: I959efae716a22bcf582c20d261fb1b57bacf6dd9 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
16 lines
623 B
Go
16 lines
623 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package tsconst exports some constants used elsewhere in the
|
|
// codebase.
|
|
package tsconst
|
|
|
|
// WintunInterfaceDesc is the description attached to Tailscale
|
|
// interfaces on Windows. This is set by the WinTun driver.
|
|
const WintunInterfaceDesc = "Tailscale Tunnel"
|
|
const WintunInterfaceDesc0_14 = "Wintun Userspace Tunnel"
|
|
|
|
// 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"
|