netlink_linux.go 213 B

123456789101112
  1. package netlink
  2. import "github.com/vishvananda/netlink/nl"
  3. // Family type definitions
  4. const (
  5. FAMILY_ALL = nl.FAMILY_ALL
  6. FAMILY_V4 = nl.FAMILY_V4
  7. FAMILY_V6 = nl.FAMILY_V6
  8. FAMILY_MPLS = nl.FAMILY_MPLS
  9. )