8cadff2b79
* CNI: bump to 1.0.1 This commit bumps the declared version of CNI in the Kilo manifests to 1.0.1. This is possible with no changes to the configuration lists because our simple configuration is not affected by any of the deprecations, and there was effectively no change between 0.4.0 and 1.0.0, other than the declaration of a stable API. Similarly, this commit also bumps the version of the CNI library and the plugins package. Bumping to CNI 1.0.0 will help ensure that Kilo stays compatible with container runtimes in the future. Signed-off-by: Lucas Servén Marín <lserven@gmail.com> * vendor: revendor Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
63 lines
1.1 KiB
Go
63 lines
1.1 KiB
Go
package netlink
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// Protinfo represents bridge flags from netlink.
|
|
type Protinfo struct {
|
|
Hairpin bool
|
|
Guard bool
|
|
FastLeave bool
|
|
RootBlock bool
|
|
Learning bool
|
|
Flood bool
|
|
ProxyArp bool
|
|
ProxyArpWiFi bool
|
|
}
|
|
|
|
// String returns a list of enabled flags
|
|
func (prot *Protinfo) String() string {
|
|
if prot == nil {
|
|
return "<nil>"
|
|
}
|
|
|
|
var boolStrings []string
|
|
if prot.Hairpin {
|
|
boolStrings = append(boolStrings, "Hairpin")
|
|
}
|
|
if prot.Guard {
|
|
boolStrings = append(boolStrings, "Guard")
|
|
}
|
|
if prot.FastLeave {
|
|
boolStrings = append(boolStrings, "FastLeave")
|
|
}
|
|
if prot.RootBlock {
|
|
boolStrings = append(boolStrings, "RootBlock")
|
|
}
|
|
if prot.Learning {
|
|
boolStrings = append(boolStrings, "Learning")
|
|
}
|
|
if prot.Flood {
|
|
boolStrings = append(boolStrings, "Flood")
|
|
}
|
|
if prot.ProxyArp {
|
|
boolStrings = append(boolStrings, "ProxyArp")
|
|
}
|
|
if prot.ProxyArpWiFi {
|
|
boolStrings = append(boolStrings, "ProxyArpWiFi")
|
|
}
|
|
return strings.Join(boolStrings, " ")
|
|
}
|
|
|
|
func boolToByte(x bool) []byte {
|
|
if x {
|
|
return []byte{1}
|
|
}
|
|
return []byte{0}
|
|
}
|
|
|
|
func byteToBool(x byte) bool {
|
|
return uint8(x) != 0
|
|
}
|