
* Bump k8s.io/cri-api to latest version - v0.23.0-alpha.4 * Vendor github.com/vishvananda/netlink for network stats Signed-off-by: David Porter <porterdavid@google.com>
12 lines
144 B
Go
12 lines
144 B
Go
// +build !linux
|
|
|
|
package nl
|
|
|
|
import "encoding/binary"
|
|
|
|
var SupportedNlFamilies = []int{}
|
|
|
|
func NativeEndian() binary.ByteOrder {
|
|
return nil
|
|
}
|