mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-17 12:46:57 +00:00
Upgrades containerd, and switches to the official 64-bit ARM binary. Continues to use my binary for 32-bit arm hosts. CNI upgraded to v0.9.1 Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
22 lines
307 B
Go
Generated
22 lines
307 B
Go
Generated
// +build !linux
|
|
|
|
package netlink
|
|
|
|
import "strconv"
|
|
|
|
func (r *Route) ListFlags() []string {
|
|
return []string{}
|
|
}
|
|
|
|
func (n *NexthopInfo) ListFlags() []string {
|
|
return []string{}
|
|
}
|
|
|
|
func (s Scope) String() string {
|
|
return "unknown"
|
|
}
|
|
|
|
func (p RouteProtocol) String() string {
|
|
return strconv.Itoa(int(p))
|
|
}
|