mirror of
https://github.com/opencontainers/runc.git
synced 2025-10-05 15:37:02 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/vishvananda/netlink](https://github.com/vishvananda/netlink) from 1.3.0 to 1.3.1. - [Release notes](https://github.com/vishvananda/netlink/releases) - [Commits](https://github.com/vishvananda/netlink/compare/v1.3.0...v1.3.1) --- updated-dependencies: - dependency-name: github.com/vishvananda/netlink dependency-version: 1.3.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
324 B
Go
15 lines
324 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
|
|
)
|
|
|
|
// ErrDumpInterrupted is an alias for [nl.ErrDumpInterrupted].
|
|
var ErrDumpInterrupted = nl.ErrDumpInterrupted
|