diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-11-30 18:49:00 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-11-30 21:22:45 +0100 |
commit | 52206cc7dda3d12d92dad3181e27b680c70e69e3 (patch) | |
tree | a28f33a102f2d703a622b9f332e98c913e3d3095 /pkg/helper/windows.go | |
parent | 0419a17814fba437e111d0335fb05a9806f9589f (diff) |
[feat] udp nameservers
Diffstat (limited to 'pkg/helper/windows.go')
-rw-r--r-- | pkg/helper/windows.go | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/pkg/helper/windows.go b/pkg/helper/windows.go index 43436ad..ca1642e 100644 --- a/pkg/helper/windows.go +++ b/pkg/helper/windows.go @@ -21,25 +21,23 @@ import ( "log" "os" "os/exec" + "path" "strconv" "strings" - "path" "golang.org/x/sys/windows" "golang.org/x/sys/windows/svc" ) - - var ( - svcName = BinaryName + `-helper-v2` + svcName = BinaryName + `-helper-v2` // XXX this is set to c:\WINDOWS\system32 on initialization. Do not use it, use a function call instead. appPath = getExecDir() LogFolder = getExecDir() openvpnPath = path.Join(appPath, "openvpn.exe") chocoOpenvpnPath = `C:\Program Files\OpenVPN\bin\openvpn.exe` - httpServerConf = &httpConf{} + httpServerConf = &httpConf{} ) func getPlatformOpenvpnFlags() []string { @@ -63,7 +61,6 @@ type httpConf struct { BindAddr string } - // parseCliArgs allows the helper binary to install/uninstall itself. It requires admin privileges. // However, be warned: if you intend to use it from the command line, you will have to compile it with the Go compiler yourself. // the version we're shipping (ie, cross-compiled with the mingw compiler) apparently is not able to output to stdout/stderr properly. @@ -154,7 +151,7 @@ func kill(cmd *exec.Cmd) error { return cmd.Process.Kill() } -func firewallStart(gateways []string) error { +func firewallStart(gateways []string, mode string) error { log.Println("Start firewall: do nothing, not implemented") return nil } |