mirror of
https://github.com/containers/podman.git
synced 2025-10-20 12:43:58 +08:00
fix(deps): update github.com/vishvananda/netlink digest to 9d88d83
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
4
vendor/github.com/vishvananda/netlink/neigh_linux.go
generated
vendored
4
vendor/github.com/vishvananda/netlink/neigh_linux.go
generated
vendored
@ -349,6 +349,10 @@ func NeighDeserialize(m []byte) (*Neigh, error) {
|
||||
neigh.VNI = int(native.Uint32(attr.Value[0:4]))
|
||||
case NDA_MASTER:
|
||||
neigh.MasterIndex = int(native.Uint32(attr.Value[0:4]))
|
||||
case NDA_CACHEINFO:
|
||||
neigh.Confirmed = native.Uint32(attr.Value[0:4])
|
||||
neigh.Used = native.Uint32(attr.Value[4:8])
|
||||
neigh.Updated = native.Uint32(attr.Value[8:12])
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user