aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/manager/ipc_server.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-06-06 15:44:29 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2019-06-07 11:31:53 +0200
commit14dfc4e3e1925fcc3d303100c44ef4c321427c6b (patch)
treedd1e16a34fafff9635381e21e99c65421ed5cbf4 /manager/ipc_server.go
parenttunnel: perform full stop on shutdown (diff)
downloadwireguard-windows-14dfc4e3e1925fcc3d303100c44ef4c321427c6b.tar.xz
wireguard-windows-14dfc4e3e1925fcc3d303100c44ef4c321427c6b.zip
global: cleanup TODO comment spacing
Diffstat (limited to 'manager/ipc_server.go')
-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 {