k3s/vendor/github.com/vishvananda/netlink/nl/addr_linux.go

72 lines
1.5 KiB
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
package nl
import (
"unsafe"
2019-09-27 21:51:53 +00:00
"golang.org/x/sys/unix"
2019-01-12 04:58:27 +00:00
)
type IfAddrmsg struct {
2019-09-27 21:51:53 +00:00
unix.IfAddrmsg
2019-01-12 04:58:27 +00:00
}
func NewIfAddrmsg(family int) *IfAddrmsg {
return &IfAddrmsg{
2019-09-27 21:51:53 +00:00
IfAddrmsg: unix.IfAddrmsg{
2019-01-12 04:58:27 +00:00
Family: uint8(family),
},
}
}
// struct ifaddrmsg {
// __u8 ifa_family;
// __u8 ifa_prefixlen; /* The prefix length */
// __u8 ifa_flags; /* Flags */
// __u8 ifa_scope; /* Address scope */
// __u32 ifa_index; /* Link index */
// };
// type IfAddrmsg struct {
// Family uint8
// Prefixlen uint8
// Flags uint8
// Scope uint8
// Index uint32
// }
// SizeofIfAddrmsg = 0x8
func DeserializeIfAddrmsg(b []byte) *IfAddrmsg {
2019-09-27 21:51:53 +00:00
return (*IfAddrmsg)(unsafe.Pointer(&b[0:unix.SizeofIfAddrmsg][0]))
2019-01-12 04:58:27 +00:00
}
func (msg *IfAddrmsg) Serialize() []byte {
2019-09-27 21:51:53 +00:00
return (*(*[unix.SizeofIfAddrmsg]byte)(unsafe.Pointer(msg)))[:]
2019-01-12 04:58:27 +00:00
}
func (msg *IfAddrmsg) Len() int {
2019-09-27 21:51:53 +00:00
return unix.SizeofIfAddrmsg
2019-01-12 04:58:27 +00:00
}
// struct ifa_cacheinfo {
// __u32 ifa_prefered;
// __u32 ifa_valid;
// __u32 cstamp; /* created timestamp, hundredths of seconds */
// __u32 tstamp; /* updated timestamp, hundredths of seconds */
// };
type IfaCacheInfo struct {
unix.IfaCacheinfo
2019-01-12 04:58:27 +00:00
}
func (msg *IfaCacheInfo) Len() int {
return unix.SizeofIfaCacheinfo
2019-01-12 04:58:27 +00:00
}
func DeserializeIfaCacheInfo(b []byte) *IfaCacheInfo {
return (*IfaCacheInfo)(unsafe.Pointer(&b[0:unix.SizeofIfaCacheinfo][0]))
2019-01-12 04:58:27 +00:00
}
func (msg *IfaCacheInfo) Serialize() []byte {
return (*(*[unix.SizeofIfaCacheinfo]byte)(unsafe.Pointer(msg)))[:]
2019-01-12 04:58:27 +00:00
}