summaryrefslogtreecommitdiff
path: root/pkg/helper/linux.go
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2020-02-27 18:06:22 +0100
committerkali kaneko (leap communications) <kali@leap.se>2020-04-30 22:10:16 +0200
commit79b2cf15c8d563dc5a3ea589ea1c4a29ee1315e8 (patch)
tree31a4b799028f0dbc5ea5b2a7e0285e41d8b97a8e /pkg/helper/linux.go
parentd1bbf9609672409120c23f989c1298fbb8b66152 (diff)
[feat] listen on available port
Diffstat (limited to 'pkg/helper/linux.go')
-rw-r--r--pkg/helper/linux.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/helper/linux.go b/pkg/helper/linux.go
index 3aaa0fe..5aa7e14 100644
--- a/pkg/helper/linux.go
+++ b/pkg/helper/linux.go
@@ -20,6 +20,7 @@ import (
"log"
"os"
"os/exec"
+ "strconv"
"0xacab.org/leap/bitmask-vpn/pkg/config"
)
@@ -46,8 +47,8 @@ func parseCliArgs() {
func daemonize() {}
-func doHandleCommands(bindAddr string) {
- runCommandServer(bindAddr)
+func doHandleCommands(port int) {
+ runCommandServer("localhost:" + strconv.Itoa(port))
}
func getOpenvpnPath() string {