diff options
Diffstat (limited to 'pkg/helper/darwin.go')
-rw-r--r-- | pkg/helper/darwin.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/helper/darwin.go b/pkg/helper/darwin.go index 0cee714..f65012d 100644 --- a/pkg/helper/darwin.go +++ b/pkg/helper/darwin.go @@ -60,6 +60,10 @@ var ( } ) +func parseCliArgs() { + // OSX helper does not respond to arguments +} + func daemonize() { cntxt := &daemon.Context{ PidFileName: "pid", @@ -82,6 +86,10 @@ func daemonize() { log.Print("bitmask-helper daemon started") } +func doHandleCommands(bindAddr string) { + runCommandServer(bindAddr) +} + func getOpenvpnPath() string { return openvpnPath } |