2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-08-15 20:20:44 +00:00
|
|
|
|
2022-06-06 20:52:52 +00:00
|
|
|
//go:build ios || js
|
|
|
|
|
2021-08-15 20:20:44 +00:00
|
|
|
package magicsock
|
|
|
|
|
2022-01-26 01:11:43 +00:00
|
|
|
import "tailscale.com/types/opt"
|
|
|
|
|
2022-06-06 20:52:52 +00:00
|
|
|
// All knobs are disabled on iOS and Wasm.
|
2022-09-14 19:49:39 +00:00
|
|
|
//
|
|
|
|
// They're inlinable and the linker can deadcode that's guarded by them to make
|
|
|
|
// smaller binaries.
|
2023-03-25 02:11:48 +00:00
|
|
|
func debugDisco() bool { return false }
|
|
|
|
func debugOmitLocalAddresses() bool { return false }
|
|
|
|
func logDerpVerbose() bool { return false }
|
|
|
|
func debugReSTUNStopOnIdle() bool { return false }
|
|
|
|
func debugAlwaysDERP() bool { return false }
|
2023-04-05 00:10:50 +00:00
|
|
|
func debugUseDERPHTTP() bool { return false }
|
2023-03-25 02:11:48 +00:00
|
|
|
func debugEnableSilentDisco() bool { return false }
|
|
|
|
func debugSendCallMeUnknownPeer() bool { return false }
|
2023-04-05 00:10:50 +00:00
|
|
|
func debugUseDERPAddr() string { return "" }
|
2023-03-25 02:11:48 +00:00
|
|
|
func debugUseDerpRouteEnv() string { return "" }
|
|
|
|
func debugUseDerpRoute() opt.Bool { return "" }
|
|
|
|
func inTest() bool { return false }
|