From c273ce15e796bcbf441c233adbe8b113fd2e5991 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 12 Mar 2019 00:04:40 -0600 Subject: tunneltracker: don't track tunnels that haven't been started Otherwise we get the hasn't-been-started-yet error, and the tracker quits. Meanwhile this is reported back to the ui as an error. While we're at it, don't let multiple trackers be run, in the event that the at-start tracker races with the installation tracker. And, make sure we actually get the deletion notification. --- service/errors.go | 1 + 1 file changed, 1 insertion(+) (limited to 'service/errors.go') diff --git a/service/errors.go b/service/errors.go index ea6147a9..fd6bc6ab 100644 --- a/service/errors.go +++ b/service/errors.go @@ -95,4 +95,5 @@ func combineErrors(err error, serviceError Error) error { const ( serviceDOES_NOT_EXIST uint32 = 0x00000424 serviceMARKED_FOR_DELETE uint32 = 0x00000430 + serviceNEVER_STARTED uint32 = 0x00000435 ) -- cgit v1.2.3-59-g8ed1b