summaryrefslogtreecommitdiff
path: root/socket_dummy.go
blob: d540f1b179b335589f4b998773455de7d99bdad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}