Update of netlink version
This is required for https://github.com/containernetworking/cni/issues/251 because version of netlink used doesn't support creating tap devices.
This commit is contained in:
10
vendor/github.com/vishvananda/netlink/netlink_linux.go
generated
vendored
Normal file
10
vendor/github.com/vishvananda/netlink/netlink_linux.go
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
||||
)
|
Reference in New Issue
Block a user