
* 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>
33 lines
535 B
Go
33 lines
535 B
Go
package netlink
|
|
|
|
import (
|
|
"encoding/binary"
|
|
|
|
"github.com/vishvananda/netlink/nl"
|
|
)
|
|
|
|
var (
|
|
native = nl.NativeEndian()
|
|
networkOrder = binary.BigEndian
|
|
)
|
|
|
|
func htonl(val uint32) []byte {
|
|
bytes := make([]byte, 4)
|
|
binary.BigEndian.PutUint32(bytes, val)
|
|
return bytes
|
|
}
|
|
|
|
func htons(val uint16) []byte {
|
|
bytes := make([]byte, 2)
|
|
binary.BigEndian.PutUint16(bytes, val)
|
|
return bytes
|
|
}
|
|
|
|
func ntohl(buf []byte) uint32 {
|
|
return binary.BigEndian.Uint32(buf)
|
|
}
|
|
|
|
func ntohs(buf []byte) uint16 {
|
|
return binary.BigEndian.Uint16(buf)
|
|
}
|