talos/pkg/machinery/nethelpers/routeprotocol_string.go
Andrey Smirnov 205a8d6dc4
chore: make nethelpers build on all OSes
Related to #4420

This removes `linux` build tags to make sure all `nethelpers` build on
any OS, as it's part of Talos API (via resources). Constants were
replaced with literal values. Code generated by `stringer` serves as
proof of the change: constant values haven't changed.

Remove build tags from `pkgs/resources/network` now, marking only a part
of single file `_linux` (which converts link spec to low-level netlink
messages).

Theere should be no functional changes.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
2021-10-26 22:45:10 +03:00

28 lines
793 B
Go

// Code generated by "stringer -type=RouteProtocol -linecomment"; DO NOT EDIT.
package nethelpers
import "strconv"
func _() {
// An "invalid array index" compiler error signifies that the constant values have changed.
// Re-run the stringer command to generate them again.
var x [1]struct{}
_ = x[ProtocolUnspec-0]
_ = x[ProtocolRedirect-1]
_ = x[ProtocolKernel-2]
_ = x[ProtocolBoot-3]
_ = x[ProtocolStatic-4]
}
const _RouteProtocol_name = "unspecredirectkernelbootstatic"
var _RouteProtocol_index = [...]uint8{0, 6, 14, 20, 24, 30}
func (i RouteProtocol) String() string {
if i >= RouteProtocol(len(_RouteProtocol_index)-1) {
return "RouteProtocol(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _RouteProtocol_name[_RouteProtocol_index[i]:_RouteProtocol_index[i+1]]
}