diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-05-10 18:43:32 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-05-26 12:54:44 +0200 |
commit | 8382f3b14a6e82f0359a4fe68aee077c1c8665ef (patch) | |
tree | 1266717c6fe411e0c6e64baa200a9aa47d8b0e79 /bitmask/unix.go | |
parent | 5556a15effa0d3604085bc28306be72149d1adf1 (diff) |
[feat] configure the zmq bitmask endpoint per platform
Windows uses tcp and linux/darwin uses a local socket.
Diffstat (limited to 'bitmask/unix.go')
-rw-r--r-- | bitmask/unix.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitmask/unix.go b/bitmask/unix.go index 0c62862..a976857 100644 --- a/bitmask/unix.go +++ b/bitmask/unix.go @@ -18,4 +18,6 @@ package bitmask import "os" +const coreEndpoint = "ipc:///var/tmp/bitmask.core.sock" + var ConfigPath = os.Getenv("HOME") + "/.config/leap" |