diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-02-27 18:06:22 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-04-30 22:10:16 +0200 |
commit | 79b2cf15c8d563dc5a3ea589ea1c4a29ee1315e8 (patch) | |
tree | 31a4b799028f0dbc5ea5b2a7e0285e41d8b97a8e /pkg/helper/windows.go | |
parent | d1bbf9609672409120c23f989c1298fbb8b66152 (diff) |
[feat] listen on available port
Diffstat (limited to 'pkg/helper/windows.go')
-rw-r--r-- | pkg/helper/windows.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/helper/windows.go b/pkg/helper/windows.go index fc80853..376b376 100644 --- a/pkg/helper/windows.go +++ b/pkg/helper/windows.go @@ -21,6 +21,7 @@ import ( "log" "os" "os/exec" + "strconv" "strings" "0xacab.org/leap/bitmask-vpn/pkg/config" @@ -97,7 +98,10 @@ func usage(errmsg string) { func daemonize() {} // http server is called from within Execute in windows -func doHandleCommands(bindAddr string) { +func doHandleCommands(preferredPort int) { + port := getFirstAvailablePortFrom(preferredPort) + writePortToFile(port) + bindAddr := "localhost:" + strconv.Itoa(port) httpBindAddr = bindAddr } |