diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-10 07:38:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 07:38:02 -0500 |
commit | deb00425c2984ea42158ce6afec74474de998bfd (patch) | |
tree | b883177c4cdf101bc862038b3258dc0b450bc243 /vendor/github.com/vishvananda/netlink/route.go | |
parent | eaa19a1c10c8eb2e5d8a0d864c123c2f3484b01a (diff) | |
parent | eb9e77430406f5223241d785b9f6807296534a3d (diff) | |
download | podman-deb00425c2984ea42158ce6afec74474de998bfd.tar.gz podman-deb00425c2984ea42158ce6afec74474de998bfd.tar.bz2 podman-deb00425c2984ea42158ce6afec74474de998bfd.zip |
Merge pull request #8678 from containers/dependabot/go_modules/github.com/containernetworking/plugins-0.9.0
Bump github.com/containernetworking/plugins from 0.8.7 to 0.9.0
Diffstat (limited to 'vendor/github.com/vishvananda/netlink/route.go')
-rw-r--r-- | vendor/github.com/vishvananda/netlink/route.go | 51 |
1 files changed, 32 insertions, 19 deletions
diff --git a/vendor/github.com/vishvananda/netlink/route.go b/vendor/github.com/vishvananda/netlink/route.go index 58ff1af60..b16254174 100644 --- a/vendor/github.com/vishvananda/netlink/route.go +++ b/vendor/github.com/vishvananda/netlink/route.go @@ -29,25 +29,38 @@ type Encap interface { // Route represents a netlink route. type Route struct { - LinkIndex int - ILinkIndex int - Scope Scope - Dst *net.IPNet - Src net.IP - Gw net.IP - MultiPath []*NexthopInfo - Protocol int - Priority int - Table int - Type int - Tos int - Flags int - MPLSDst *int - NewDst Destination - Encap Encap - MTU int - AdvMSS int - Hoplimit int + LinkIndex int + ILinkIndex int + Scope Scope + Dst *net.IPNet + Src net.IP + Gw net.IP + MultiPath []*NexthopInfo + Protocol int + Priority int + Table int + Type int + Tos int + Flags int + MPLSDst *int + NewDst Destination + Encap Encap + MTU int + Window int + Rtt int + RttVar int + Ssthresh int + Cwnd int + AdvMSS int + Reordering int + Hoplimit int + InitCwnd int + Features int + RtoMin int + InitRwnd int + QuickACK int + Congctl string + FastOpenNoCookie int } func (r Route) String() string { |