summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/vpn/service.py
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2017-02-22 01:30:33 +0100
committerKali Kaneko (leap communications) <kali@leap.se>2017-02-23 00:42:21 +0100
commitf0a40443e1f2466db00f4a32273afa28e54d9dbb (patch)
tree7c4dbff806cddfcf148d82e96a00f5e161437eaf /src/leap/bitmask/vpn/service.py
parent143c61353479c8040eb1160984af7cfbe7e53a55 (diff)
[bug] rename one of the managers to TunnelManager
otherwise there's a name collision with the former EIPManager
Diffstat (limited to 'src/leap/bitmask/vpn/service.py')
-rw-r--r--src/leap/bitmask/vpn/service.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py
index 10818ed7..e56546ea 100644
--- a/src/leap/bitmask/vpn/service.py
+++ b/src/leap/bitmask/vpn/service.py
@@ -72,6 +72,9 @@ class VPNService(HookableService):
return {'result': 'started'}
def stop_vpn(self):
+ # TODO -----------------------------
+ # when shutting down the main bitmaskd daemon, this should be called.
+
if self._started:
self._vpn.stop()
self._started = False