blob: a20d293d870fc8836c3d88dc7f6524e6c1068670 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package netlink
import "github.com/vishvananda/netlink/nl"
// Family type definitions
const (
FAMILY_ALL = nl.FAMILY_ALL
FAMILY_V4 = nl.FAMILY_V4
FAMILY_V6 = nl.FAMILY_V6
FAMILY_MPLS = nl.FAMILY_MPLS
)
|