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