summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/backend/backend_proxy.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-02-23 11:54:16 -0400
committerIvan Alejandro <ivanalejandro0@gmail.com>2015-02-23 15:34:36 -0300
commite3ddc783ca9fb21105845d275a4b38ad6b2cd3e2 (patch)
treee65c35d3c065459e38f1b89d3a3cdb804a78bb37 /src/leap/bitmask/backend/backend_proxy.py
parent00b8cbaa31d48326b36928228269ac14276fd5ee (diff)
Use unix sockets for the fallback, and set permissions
... on them, to user-writeable only. I think we could consider ipc for the curve-case too, at least for the platforms that support them.
Diffstat (limited to 'src/leap/bitmask/backend/backend_proxy.py')
-rw-r--r--src/leap/bitmask/backend/backend_proxy.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/leap/bitmask/backend/backend_proxy.py b/src/leap/bitmask/backend/backend_proxy.py
index 06e6d840..b2f79a70 100644
--- a/src/leap/bitmask/backend/backend_proxy.py
+++ b/src/leap/bitmask/backend/backend_proxy.py
@@ -42,8 +42,11 @@ class BackendProxy(object):
to the backend.
"""
- PORT = '5556'
- SERVER = "tcp://localhost:%s" % PORT
+ if flags.ZMQ_HAS_CURVE:
+ PORT = '5556'
+ SERVER = "tcp://localhost:%s" % PORT
+ else:
+ SERVER = "ipc:///tmp/bitmask.socket.0"
POLL_TIMEOUT = 4000 # ms
POLL_TRIES = 3