summaryrefslogtreecommitdiff
path: root/src/daemon_darwin.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-23 15:48:23 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-23 15:48:23 +0200
commit2ed9dac3a51b296819380758f4390b0032243c61 (patch)
tree07e354051922a04e9037cb3c714af6fe3138130e /src/daemon_darwin.go
parent47f8a3d89ad0d1478246bf62140eb4fbfe83ac72 (diff)
parent2a6dd2ed926ddc44cd98d8c940aa01f830213ea0 (diff)
downloadwireguard-go-2ed9dac3a51b296819380758f4390b0032243c61.tar.gz
wireguard-go-2ed9dac3a51b296819380758f4390b0032243c61.zip
Merge branch 'darwin'
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")
+}