aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/manager/ipc_server.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--manager/ipc_server.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/manager/ipc_server.go b/manager/ipc_server.go
index a460a27b..18ff858b 100644
--- a/manager/ipc_server.go
+++ b/manager/ipc_server.go
@@ -205,8 +205,8 @@ func (s *ManagerService) Create(tunnelConfig conf.Config, tunnel *Tunnel) error
}
*tunnel = Tunnel{tunnelConfig.Name}
return nil
- //TODO: handle already existing situation
- //TODO: handle already running and existing situation
+ // TODO: handle already existing situation
+ // TODO: handle already running and existing situation
}
func (s *ManagerService) Tunnels(_ uintptr, tunnels *[]Tunnel) error {
@@ -219,7 +219,7 @@ func (s *ManagerService) Tunnels(_ uintptr, tunnels *[]Tunnel) error {
(*tunnels)[i].Name = names[i]
}
return nil
- //TODO: account for running ones that aren't in the configuration store somehow
+ // TODO: account for running ones that aren't in the configuration store somehow
}
func (s *ManagerService) Quit(stopTunnelsOnQuit bool, alreadyQuit *bool) error {