1
0
mirror of https://github.com/rancher/os.git synced 2025-07-02 17:51:49 +00:00
os/vendor/github.com/vishvananda/netlink/link_tuntap_linux.go
2015-12-07 18:17:57 +05:00

15 lines
282 B
Go

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
}