diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-23 06:15:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 06:15:11 -0800 |
commit | 8098cbbee192e644de505e62c4aa0341f4acb4a5 (patch) | |
tree | 50af7ba7e829ab4d6fc9ba143e13f79dc04f4f64 /vendor/github.com/vishvananda/netlink/neigh.go | |
parent | c5f3899cb4133922a9732aff4680bb7eea3d391b (diff) | |
parent | 9f927c4709a51ef72d84bb557fc371d535c19fba (diff) | |
download | podman-8098cbbee192e644de505e62c4aa0341f4acb4a5.tar.gz podman-8098cbbee192e644de505e62c4aa0341f4acb4a5.tar.bz2 podman-8098cbbee192e644de505e62c4aa0341f4acb4a5.zip |
Merge pull request #4946 from containers/dependabot/go_modules/github.com/vishvananda/netlink-1.1.0
build(deps): bump github.com/vishvananda/netlink from 1.0.0 to 1.1.0
Diffstat (limited to 'vendor/github.com/vishvananda/netlink/neigh.go')
-rw-r--r-- | vendor/github.com/vishvananda/netlink/neigh.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/vishvananda/netlink/neigh.go b/vendor/github.com/vishvananda/netlink/neigh.go index 3f5cd497a..379e5655f 100644 --- a/vendor/github.com/vishvananda/netlink/neigh.go +++ b/vendor/github.com/vishvananda/netlink/neigh.go @@ -17,9 +17,16 @@ type Neigh struct { LLIPAddr net.IP //Used in the case of NHRP Vlan int VNI int + MasterIndex int } // String returns $ip/$hwaddr $label func (neigh *Neigh) String() string { return fmt.Sprintf("%s %s", neigh.IP, neigh.HardwareAddr) } + +// NeighUpdate is sent when a neighbor changes - type is RTM_NEWNEIGH or RTM_DELNEIGH. +type NeighUpdate struct { + Type uint16 + Neigh +} |