1
0
mirror of https://github.com/vishvananda/netlink synced 2025-03-25 04:26:51 +00:00
netlink/link_tuntap_linux.go

15 lines
282 B
Go
Raw Normal View History

package netlink
// ideally golang.org/x/sys/unix would define IfReq but it only has
// IFNAMSIZ, hence this minimalistic implementation
const (
SizeOfIfReq = 40
IFNAMSIZ = 16
)
type ifReq struct {
Name [IFNAMSIZ]byte
Flags uint16
pad [SizeOfIfReq - IFNAMSIZ - 2]byte
}