blob: 7b21c82093656a98d676f5e0e773f4436149e36a (
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, ErrNoSDSupport
}
func sdListenFDsWithNames(bool) (map[string]*os.File, error) {
return nil, ErrNoSDSupport
}
|