1package netlink
2
3import (
4	"errors"
5)
6
7var (
8	// ErrAttrHeaderTruncated is returned when a netlink attribute's header is
9	// truncated.
10	ErrAttrHeaderTruncated = errors.New("attribute header truncated")
11	// ErrAttrBodyTruncated is returned when a netlink attribute's body is
12	// truncated.
13	ErrAttrBodyTruncated = errors.New("attribute body truncated")
14)
15
16type Fou struct {
17	Family    int
18	Port      int
19	Protocol  int
20	EncapType int
21}
22