From 5cb173a9939f051fce06bfe540a87881bde9680f Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Fri, 21 Oct 2016 16:59:47 -0400 Subject: [bug] use tcp endpoint for windows --- src/leap/bitmask/core/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/leap/bitmask/core') diff --git a/src/leap/bitmask/core/__init__.py b/src/leap/bitmask/core/__init__.py index aad3a4a..55672e4 100644 --- a/src/leap/bitmask/core/__init__.py +++ b/src/leap/bitmask/core/__init__.py @@ -1,5 +1,10 @@ +import platform + APPNAME = "bitmask.core" -ENDPOINT = "ipc:///tmp/%s.sock" % APPNAME +if platform.system() =='Windows': + ENDPOINT = "tcp://127.0.0.1:5001" +else: + ENDPOINT = "ipc:///tmp/%s.sock" % APPNAME # FIXME some temporary imports to make the modules # appear in the coverage report. Remove the imports when -- cgit v1.2.3