aboutsummaryrefslogtreecommitdiff
path: root/src/daemon_darwin.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-27 23:46:01 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-27 23:46:01 +0200
commit92135131a7e87b9e078d32f4128bef1698132936 (patch)
treeae9dfe5243aa22a2f26e3b7baf346f7322551611 /src/daemon_darwin.go
parentfb3fa4f9158458654281129f44f354a65741aef3 (diff)
parentc3d9ae402d431b7697686dbaf021f879c8ccab36 (diff)
downloadwireguard-go-92135131a7e87b9e078d32f4128bef1698132936.tar.gz
wireguard-go-92135131a7e87b9e078d32f4128bef1698132936.zip
Merge branch 'master' of git.zx2c4.com:wireguard-go
Diffstat (limited to 'src/daemon_darwin.go')
-rw-r--r--src/daemon_darwin.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/daemon_darwin.go b/src/daemon_darwin.go
new file mode 100644
index 0000000..913af0e
--- /dev/null
+++ b/src/daemon_darwin.go
@@ -0,0 +1,9 @@
+package main
+
+import (
+ "errors"
+)
+
+func Daemonize() error {
+ return errors.New("Not implemented on OSX")
+}