diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-06-04 13:23:35 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-06-04 20:59:09 +0200 |
commit | de9eb2148f9d1af3a0e78b2567f862269df7517f (patch) | |
tree | e504f38b29ac86e0871a7a515f5da796684c8a2b /bitmask/unix.go | |
parent | 8c3ba3a2d6a3db9d277c9d6b7532d125b39e1676 (diff) |
[feat] use http to communicate with the core
Instead of using zmq.
Diffstat (limited to 'bitmask/unix.go')
-rw-r--r-- | bitmask/unix.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/bitmask/unix.go b/bitmask/unix.go index 321f1c0..d276556 100644 --- a/bitmask/unix.go +++ b/bitmask/unix.go @@ -18,14 +18,6 @@ package bitmask import ( "os" - - "github.com/pebbe/zmq4" ) -const coreEndpoint = "ipc:///var/tmp/bitmask.core.sock" - var ConfigPath = os.Getenv("HOME") + "/.config/leap" - -func hasCurve() bool { - return zmq4.HasCurve() -} |