controlclient: use per-peer KeepAlive signal

Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
reviewable/pr187/r1
David Crawshaw 4 years ago
parent 290f83e9f6
commit 8712164a0a

@ -16,7 +16,6 @@ import (
"github.com/tailscale/wireguard-go/wgcfg" "github.com/tailscale/wireguard-go/wgcfg"
"tailscale.com/tailcfg" "tailscale.com/tailcfg"
"tailscale.com/version"
"tailscale.com/wgengine/filter" "tailscale.com/wgengine/filter"
) )
@ -328,8 +327,7 @@ func (nm *NetworkMap) _WireGuardConfig(uflags int, dnsOverride []wgcfg.IP, allEn
aips = append(aips, aip) aips = append(aips, aip)
} }
fmt.Fprintf(buf, "AllowedIPs = %s\n", strings.Join(aips, ", ")) fmt.Fprintf(buf, "AllowedIPs = %s\n", strings.Join(aips, ", "))
doKeepAlives := !version.IsMobile() if peer.KeepAlive {
if doKeepAlives {
fmt.Fprintf(buf, "PersistentKeepalive = 25\n") fmt.Fprintf(buf, "PersistentKeepalive = 25\n")
} }
} }

Loading…
Cancel
Save