blob: 4311e6c51c08db0db838d02ebde9e0111021ce32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// SPDX-FileCopyrightText: © 2021 Grégoire Duchêne <gduchene@awhk.org>
// SPDX-License-Identifier: ISC
// +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
}
|