mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-15 10:04:22 -08: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
18 lines
379 B
Go
18 lines
379 B
Go
package genetlink
|
|
|
|
// A Family is a generic netlink family.
|
|
type Family struct {
|
|
ID uint16
|
|
Version uint8
|
|
Name string
|
|
Groups []MulticastGroup
|
|
}
|
|
|
|
// A MulticastGroup is a generic netlink multicast group, which can be joined
|
|
// for notifications from generic netlink families when specific events take
|
|
// place.
|
|
type MulticastGroup struct {
|
|
ID uint32
|
|
Name string
|
|
}
|