diff options
author | antialias <antialias@leap.se> | 2012-11-16 17:38:46 -0800 |
---|---|---|
committer | kali <kali@leap.se> | 2013-01-15 22:42:17 +0900 |
commit | 348eb0852d6f1b8b2b72baba8a236bc30a6f2a4e (patch) | |
tree | 9ca25989e77ff353dd784ddb1e2f1c3e30534785 /src/leap/baseapp | |
parent | f90f9df1d09e12ba64e9401530684d5a36220ad3 (diff) |
reads and searches for strings from openvpn logs via the management interface.
Diffstat (limited to 'src/leap/baseapp')
-rw-r--r-- | src/leap/baseapp/eip.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/leap/baseapp/eip.py b/src/leap/baseapp/eip.py index 41f4c541..f18a62e7 100644 --- a/src/leap/baseapp/eip.py +++ b/src/leap/baseapp/eip.py @@ -174,6 +174,10 @@ class EIPConductorAppMixin(object): self.tun_read_bytes.setText(tun_read) self.tun_write_bytes.setText(tun_write) + # connection information via management interface + log = self.conductor.get_log() + self.network_checker.parse_log(log) + @QtCore.pyqtSlot() def start_or_stopVPN(self): """ |