mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-26 04:03:11 +00:00
22 lines
307 B
Go
Vendored
22 lines
307 B
Go
Vendored
// +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))
|
|
}
|