summaryrefslogtreecommitdiff
path: root/socket_dummy.go
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2021-06-27 19:31:23 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2021-06-27 19:31:23 +0100
commitc62f3e8b39e7d1ff3d46cc4d3d599b2450b3c097 (patch)
tree8d0667e9176cdbf359530a9efe85b12eaf4559a2 /socket_dummy.go
parent424618a7f2f253a0529e3462ceb69607ee3c8c88 (diff)
First draft
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
+}