You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
18 lines
379 B
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
|
|
}
|