mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
wgengine/magicsock: make debugUseDerpRoute an opt.Bool.
Can still be constant, just needs the extra methods. Fixes #3812 Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
c2059d5b8a
commit
7a18fe3dca
@ -4,13 +4,15 @@
|
|||||||
|
|
||||||
package magicsock
|
package magicsock
|
||||||
|
|
||||||
|
import "tailscale.com/types/opt"
|
||||||
|
|
||||||
// All knobs are disabled on iOS.
|
// All knobs are disabled on iOS.
|
||||||
// Further, they're const, so the toolchain can produce smaller binaries.
|
// Further, they're const, so the toolchain can produce smaller binaries.
|
||||||
const (
|
const (
|
||||||
debugDisco = false
|
debugDisco = false
|
||||||
debugOmitLocalAddresses = false
|
debugOmitLocalAddresses = false
|
||||||
debugUseDerpRouteEnv = ""
|
debugUseDerpRouteEnv = ""
|
||||||
debugUseDerpRoute = false
|
debugUseDerpRoute opt.Bool = ""
|
||||||
logDerpVerbose = false
|
logDerpVerbose = false
|
||||||
debugReSTUNStopOnIdle = false
|
debugReSTUNStopOnIdle = false
|
||||||
debugAlwaysDERP = false
|
debugAlwaysDERP = false
|
||||||
|
Loading…
Reference in New Issue
Block a user