1
0
mirror of https://github.com/rancher/os.git synced 2025-07-08 04:18:38 +00:00
os/vendor/github.com/vishvananda/netlink/netlink_linux.go
Sven Dowideit 17b3589782 Add a network test that sets up 2 of 4 ehternet devices, and allows another to use dhcp
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-03-10 22:28:41 +10:00

12 lines
213 B
Go

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
)