From 4cc84f62c66643539e714565627e77c95731431f Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 3 Feb 2021 15:18:20 -0500 Subject: [PATCH] ipn: add LoginServer pref for windows Signed-off-by: Christine Dodrill --- ipn/prefs.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ipn/prefs.go b/ipn/prefs.go index f8256454b..48a0292b3 100644 --- a/ipn/prefs.go +++ b/ipn/prefs.go @@ -124,6 +124,10 @@ type Prefs struct { // We can maybe do that once we're sure which module should persist // it (backend or frontend?) Persist *controlclient.Persist `json:"Config"` + + // The target server where logs should be sent. If not set this will + // default to https://log.tailscale.io. + LogServer string } // IsEmpty reports whether p is nil or pointing to a Prefs zero value.