controlclient: use per-peer KeepAlive signal

pull/96/head
David Crawshaw 2020-03-14 10:57:12 -05:00
parent 290f83e9f6
commit 4f07ca1822
1 changed files with 1 additions and 3 deletions

View File

@ -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")
} }
} }