blob: 5cdddc233f9e87ce7079954e8bd0d4ff5703a674 (
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
}
|