blob: bf588badd51f85644f774061de12c9a665e7c5f1 (
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
//go: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
}
|