k3s/vendor/github.com/vishvananda/netlink/fou.go
Darren Shepherd 661988fb38 Update vendor
2019-09-27 16:54:32 -07:00

22 lines
436 B
Go

package netlink
import (
"errors"
)
var (
// ErrAttrHeaderTruncated is returned when a netlink attribute's header is
// truncated.
ErrAttrHeaderTruncated = errors.New("attribute header truncated")
// ErrAttrBodyTruncated is returned when a netlink attribute's body is
// truncated.
ErrAttrBodyTruncated = errors.New("attribute body truncated")
)
type Fou struct {
Family int
Port int
Protocol int
EncapType int
}