diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-08-06 15:49:34 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-08-06 15:49:34 -0300 |
commit | aaec2c78dc0bf39d7d4b9ae930de9b7f95ae763c (patch) | |
tree | eec66281a67f1cc99f540b870e2876fcecb78455 /src/leap/bitmask/services/eip/vpnprocess.py | |
parent | 0c6ec2f7a5aae716b76d508066fbb69b378fbf43 (diff) | |
parent | 9a7485bcaf5460d68b7f601927500299bb2ca9f0 (diff) |
Merge remote-tracking branch 'refs/remotes/kali/bug/fix-bad-eip-status' into develop
Diffstat (limited to 'src/leap/bitmask/services/eip/vpnprocess.py')
-rw-r--r-- | src/leap/bitmask/services/eip/vpnprocess.py | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/leap/bitmask/services/eip/vpnprocess.py b/src/leap/bitmask/services/eip/vpnprocess.py index c6a7b98b..c7159a93 100644 --- a/src/leap/bitmask/services/eip/vpnprocess.py +++ b/src/leap/bitmask/services/eip/vpnprocess.py @@ -202,7 +202,24 @@ class VPN(object): "aborting openvpn launch.") return - cmd = vpnproc.getCommand() + # FIXME it would be good to document where the + # errors here are catched, since we currently handle them + # at the frontend layer. This *should* move to be handled entirely + # in the backend. + # exception is indeed technically catched in backend, then converted + # into a signal, that is catched in the eip_status widget in the + # frontend, and converted into a signal to abort the connection that is + # sent to the backend again. + + # the whole exception catching should be done in the backend, without + # the ping-pong to the frontend, and without adding any logical checks + # in the frontend. We should just communicate UI changes to frontend, + # and abstract us away from anything else. + try: + cmd = vpnproc.getCommand() + except Exception: + logger.error("Error while getting vpn command...") + raise env = os.environ for key, val in vpnproc.vpn_env.items(): env[key] = val |