diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-08-02 16:43:28 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-08-02 16:43:28 -0300 |
commit | 5b04d2fe6ee586e9156e0eebf8d4024cc62fea92 (patch) | |
tree | c3f52f9b7f19f1e0f9b176fe935a9e6e31324e2f /src/leap/bitmask/backend/backend_proxy.py | |
parent | 3b02e227cfa48074739eb4f6634a436e65923b61 (diff) | |
parent | 3b469a2c006381ba9e56c1de92be4e87ad67e51b (diff) |
Merge remote-tracking branch 'refs/remotes/kali/feature/pseudo-cancel-eip' into develop
Diffstat (limited to 'src/leap/bitmask/backend/backend_proxy.py')
-rw-r--r-- | src/leap/bitmask/backend/backend_proxy.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/backend/backend_proxy.py b/src/leap/bitmask/backend/backend_proxy.py index dc30d2cb..e2611251 100644 --- a/src/leap/bitmask/backend/backend_proxy.py +++ b/src/leap/bitmask/backend/backend_proxy.py @@ -18,6 +18,8 @@ The BackendProxy handles calls from the GUI and forwards (through ZMQ) to the backend. """ +# XXX should document the relationship to the API here. + import functools import Queue import threading @@ -37,6 +39,7 @@ class BackendProxy(object): The BackendProxy handles calls from the GUI and forwards (through ZMQ) to the backend. """ + PORT = '5556' SERVER = "tcp://localhost:%s" % PORT |