diff options
author | antialias <antialias@leap.se> | 2012-08-21 10:27:43 -0700 |
---|---|---|
committer | antialias <antialias@leap.se> | 2012-08-21 10:27:43 -0700 |
commit | af33eaa36c3b799a14a56b7845db3833ed52b97d (patch) | |
tree | 62773680916041a28abf30ec639879c98223173b /src/leap/base/connection.py | |
parent | ac00ec313a142e910447857c0e46e6d36c7f2ab2 (diff) | |
parent | 560232609ef229d46932f8ffcd66b8e114e8b3e6 (diff) |
Merge branch 'refactor' into json-config
Diffstat (limited to 'src/leap/base/connection.py')
-rw-r--r-- | src/leap/base/connection.py | 37 |
1 files changed, 14 insertions, 23 deletions
diff --git a/src/leap/base/connection.py b/src/leap/base/connection.py index cd0ae565..8cd78433 100644 --- a/src/leap/base/connection.py +++ b/src/leap/base/connection.py @@ -3,17 +3,8 @@ Base Connection Classs """ from __future__ import (division, unicode_literals, print_function) -#XXX move these imports to util.coroutines!!! - -#import threading -#from functools import partial import logging -#from leap.utils.coroutines import spawn_and_watch_process -#from leap.baseapp.config import get_config, get_vpn_stdout_mockup -#from leap.eip.vpnwatcher import EIPConnectionStatus, status_watcher -from leap.eip.vpnmanager import ConnectionRefusedError - from leap.base.configuration import Configuration from leap.base.authentication import Authentication @@ -58,21 +49,21 @@ class Connection(Configuration, Authentication): """ return self.desired_connection_state - def poll_connection_state(self): - """ - """ - try: - state = self.get_connection_state() - except ConnectionRefusedError: + #def poll_connection_state(self): + #""" + #""" + #try: + #state = self.get_connection_state() + #except ConnectionRefusedError: # connection refused. might be not ready yet. - return - if not state: - return - (ts, status_step, - ok, ip, remote) = state - self.status.set_vpn_state(status_step) - status_step = self.status.get_readable_status() - return (ts, status_step, ok, ip, remote) + #return + #if not state: + #return + #(ts, status_step, + #ok, ip, remote) = state + #self.status.set_vpn_state(status_step) + #status_step = self.status.get_readable_status() + #return (ts, status_step, ok, ip, remote) def get_icon_name(self): """ |