From 933d201bbab2c280f9b87b604b0f421678d8d3ba Mon Sep 17 00:00:00 2001 From: James Tucker Date: Thu, 9 Nov 2023 16:54:55 -0800 Subject: [PATCH] ipn/policy: mark AppConnector service as interesting Updates #15437 Signed-off-by: James Tucker --- ipn/policy/policy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipn/policy/policy.go b/ipn/policy/policy.go index 494a0dc40..8703b71ae 100644 --- a/ipn/policy/policy.go +++ b/ipn/policy/policy.go @@ -14,7 +14,7 @@ import ( // to our peer nodes for discovery purposes. func IsInterestingService(s tailcfg.Service, os string) bool { switch s.Proto { - case tailcfg.PeerAPI4, tailcfg.PeerAPI6, tailcfg.PeerAPIDNS: + case tailcfg.PeerAPI4, tailcfg.PeerAPI6, tailcfg.PeerAPIDNS, tailcfg.AppConnector: return true } if s.Proto != tailcfg.TCP {