mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-22 00:16:08 +01:00
4d7aa57da0
* Update vendor github.com/beevik/ntp@v0.2.0 * Update vendor github.com/mdlayher/netlink/... * Update vendor github.com/mdlayher/wifi/... Adds vendor github.com/mdlayher/genetlink * Update vendor github.com/prometheus/common/... * Update vendor github.com/prometheus/procfs/... * Update vendor golang.org/x/sys/unix * Update vendor golang.org/x/sys/windows
26 lines
545 B
Go
26 lines
545 B
Go
//+build !linux
|
|
|
|
package genetlink
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
var (
|
|
// errUnimplemented is returned by all functions on platforms that
|
|
// cannot make use of generic netlink.
|
|
errUnimplemented = fmt.Errorf("generic netlink not implemented on %s/%s",
|
|
runtime.GOOS, runtime.GOARCH)
|
|
)
|
|
|
|
// getFamily always returns an error.
|
|
func (c *Conn) getFamily(name string) (Family, error) {
|
|
return Family{}, errUnimplemented
|
|
}
|
|
|
|
// listFamilies always returns an error.
|
|
func (c *Conn) listFamilies() ([]Family, error) {
|
|
return nil, errUnimplemented
|
|
}
|