summaryrefslogtreecommitdiff
path: root/pkg/helper/linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/helper/linux.go')
-rw-r--r--pkg/helper/linux.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkg/helper/linux.go b/pkg/helper/linux.go
index 5aa7e14..235351b 100644
--- a/pkg/helper/linux.go
+++ b/pkg/helper/linux.go
@@ -45,10 +45,13 @@ func parseCliArgs() {
// linux helper does not reply to args
}
+func initializeService(port int) {}
+
func daemonize() {}
-func doHandleCommands(port int) {
- runCommandServer("localhost:" + strconv.Itoa(port))
+func runServer(port int) {
+ // defined in helper.go
+ serveHTTP("localhost:" + strconv.Itoa(port))
}
func getOpenvpnPath() string {