From 8382f3b14a6e82f0359a4fe68aee077c1c8665ef Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Thu, 10 May 2018 18:43:32 +0200 Subject: [feat] configure the zmq bitmask endpoint per platform Windows uses tcp and linux/darwin uses a local socket. --- bitmask/main.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'bitmask/main.go') diff --git a/bitmask/main.go b/bitmask/main.go index a78ffab..a044c58 100644 --- a/bitmask/main.go +++ b/bitmask/main.go @@ -18,7 +18,6 @@ package bitmask import ( "encoding/json" "errors" - "fmt" "log" "time" @@ -26,9 +25,7 @@ import ( ) const ( - // On win should be: tcp://127.0.0.1:5001 - coreEndpoint = "ipc://%s/bitmask.core.sock" - timeout = time.Second * 15 + timeout = time.Second * 15 ) // Bitmask holds the bitmask client data @@ -101,7 +98,6 @@ func initCore() (*zmq4.Socket, error) { return nil, err } - endpointPwd := "/var/tmp" - err = socket.Connect(fmt.Sprintf(coreEndpoint, endpointPwd)) + err = socket.Connect(coreEndpoint) return socket, err } -- cgit v1.2.3