summaryrefslogtreecommitdiff
path: root/socket_dummy.go
diff options
context:
space:
mode:
Diffstat (limited to 'socket_dummy.go')
-rw-r--r--socket_dummy.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/socket_dummy.go b/socket_dummy.go
new file mode 100644
index 0000000..d540f1b
--- /dev/null
+++ b/socket_dummy.go
@@ -0,0 +1,13 @@
+// +build !linux nosystemd
+
+package gosdd
+
+import "os"
+
+func sdListenFDs(bool) ([]*os.File, error) {
+ return nil, nil
+}
+
+func sdListenFDsWithNames(bool) (map[string]*os.File, error) {
+ return nil, nil
+}