diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-06 14:26:14 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-23 00:40:39 +0100 |
commit | 1ba66d113ae0e3ce1651709c812426a3453d94d2 (patch) | |
tree | 49170c4e5871f5937cdd99d9e020d1c074c261f7 /src/leap/bitmask/vpn/_status.py | |
parent | 7f07ffa13eaa51419af6f019bf9b36b298274485 (diff) |
[feature] hard restarts upon ping-restart received
Diffstat (limited to 'src/leap/bitmask/vpn/_status.py')
-rw-r--r-- | src/leap/bitmask/vpn/_status.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/leap/bitmask/vpn/_status.py b/src/leap/bitmask/vpn/_status.py index da8992ed..940c0cd6 100644 --- a/src/leap/bitmask/vpn/_status.py +++ b/src/leap/bitmask/vpn/_status.py @@ -20,8 +20,6 @@ class VPNStatus(object): 'Network is unreachable (code=101)',), 'PROCESS_RESTART_TLS': ( "SIGTERM[soft,tls-error]",), - 'PROCESS_RESTART_PING': ( - "SIGTERM[soft,ping-restart]",), 'INITIALIZATION_COMPLETED': ( "Initialization Sequence Completed",), } @@ -71,7 +69,6 @@ class VPNStatus(object): _table = { "network_unreachable": ('OFFLINE', 'network unreachable'), "process_restart_tls": ('RESTARTING', 'restart tls'), - "process_restart_ping": ('CONNECTING', None), "initialization_completed": ('ONLINE', None) } return _table.get(event.lower()) |