summaryrefslogtreecommitdiff
path: root/src/leap/bitmask
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-04-23 12:54:29 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-04-23 12:54:29 -0300
commit58a1381764b16ebe01639020c73d4c96632cadfa (patch)
tree336d35ea2cd5d7a5afb3339c7cb430533dda18cb /src/leap/bitmask
parentf783150bd4afdb739c827a7bb2676ed6db6ba34e (diff)
Swap upload/download data strings. Closes #5563.
Diffstat (limited to 'src/leap/bitmask')
-rw-r--r--src/leap/bitmask/backend.py2
-rw-r--r--src/leap/bitmask/gui/eip_status.py4
-rw-r--r--src/leap/bitmask/services/eip/vpnprocess.py6
3 files changed, 6 insertions, 6 deletions
diff --git a/src/leap/bitmask/backend.py b/src/leap/bitmask/backend.py
index d5a8a4e9..054aec85 100644
--- a/src/leap/bitmask/backend.py
+++ b/src/leap/bitmask/backend.py
@@ -1040,7 +1040,7 @@ class Backend(object):
eip_process_restart_ping
eip_process_restart_tls
eip_state_changed -> str
- eip_status_changed -> str
+ eip_status_changed -> tuple of str (download, upload)
eip_vpn_launcher_exception
"""
self._call_queue.put(("eip", "start", None))
diff --git a/src/leap/bitmask/gui/eip_status.py b/src/leap/bitmask/gui/eip_status.py
index 0d75b8e5..bc31b91d 100644
--- a/src/leap/bitmask/gui/eip_status.py
+++ b/src/leap/bitmask/gui/eip_status.py
@@ -359,8 +359,8 @@ class EIPStatusWidget(QtGui.QWidget):
If data is None, we just will refresh the display based on the previous
data.
- :param data: a dictionary with the tcp/udp write and read totals.
- :type data: dict
+ :param data: a tuple with download/upload totals (download, upload).
+ :type data: tuple
"""
if data is not None:
try:
diff --git a/src/leap/bitmask/services/eip/vpnprocess.py b/src/leap/bitmask/services/eip/vpnprocess.py
index 9986526a..6e4580ac 100644
--- a/src/leap/bitmask/services/eip/vpnprocess.py
+++ b/src/leap/bitmask/services/eip/vpnprocess.py
@@ -540,11 +540,11 @@ class VPNManager(object):
# "Auth read bytes"
if text == "TUN/TAP read bytes":
- tun_tap_read = value
+ tun_tap_read = value # download
elif text == "TUN/TAP write bytes":
- tun_tap_write = value
+ tun_tap_write = value # upload
- status = (tun_tap_write, tun_tap_read)
+ status = (tun_tap_read, tun_tap_write)
if status != self._last_status:
self._signaler.signal(self._signaler.EIP_STATUS_CHANGED, status)
self._last_status = status