diff options
author | kali <kali@win> | 2020-09-25 16:49:46 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-09-25 20:42:50 +0200 |
commit | 5518645dfdfd1250dcabd98bda5d71d18eb4edcc (patch) | |
tree | d0ca2b3090aec17d43edb63a4383c63388ee2c27 /pkg/helper/helper.go | |
parent | 2ecd10efa37c6ccd04c43e663f88c4a6910b2a4b (diff) |
[pkg] windows helper and qtinstaller
Diffstat (limited to 'pkg/helper/helper.go')
-rw-r--r-- | pkg/helper/helper.go | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pkg/helper/helper.go b/pkg/helper/helper.go index 4fa88b2..9d0b330 100644 --- a/pkg/helper/helper.go +++ b/pkg/helper/helper.go @@ -22,13 +22,18 @@ package helper import ( - "0xacab.org/leap/bitmask-vpn/pkg/config" "encoding/json" "log" "net/http" "os/exec" ) +var ( + AppName = "DemoLibVPN" + BinaryName = "bitmask" + Version = "git" +) + type openvpnT struct { cmd *exec.Cmd } @@ -82,6 +87,7 @@ func (openvpn *openvpnT) run(args []string) error { return err } } + log.Println("OPENVPN PATH:", getOpenvpnPath()) // TODO: if it dies we should restart it openvpn.cmd = exec.Command(getOpenvpnPath(), args...) @@ -151,7 +157,7 @@ func firewallIsUpHandler(w http.ResponseWriter, r *http.Request) { } func versionHandler(w http.ResponseWriter, r *http.Request) { - w.Write([]byte(config.ApplicationName + "/" + config.Version + "\n")) + w.Write([]byte(AppName + "/" + Version + "\n")) w.WriteHeader(http.StatusOK) } |