diff options
Diffstat (limited to 'src/leap/bitmask/vpn/manager.py')
-rw-r--r-- | src/leap/bitmask/vpn/manager.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/manager.py b/src/leap/bitmask/vpn/manager.py index ba1ae7c1..88d10bb7 100644 --- a/src/leap/bitmask/vpn/manager.py +++ b/src/leap/bitmask/vpn/manager.py @@ -30,7 +30,7 @@ from .constants import IS_WIN # TODO this is very badly named. There is another class that is called # manager. This -class VPNManager(object): +class TunnelManager(object): def __init__(self, remotes, cert_path, key_path, ca_path, extra_flags): """ @@ -40,6 +40,7 @@ class VPNManager(object): ((ip1, portA), (ip2, portB), ...) :type remotes: tuple of tuple(str, int) """ + print "INIT", remotes # TODO we can set all the needed ports, gateways and paths in here # TODO need gateways here # sorting them doesn't belong in here |