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>
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package netlink
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
)
|
|
|
|
// Rule represents a netlink rule.
|
|
type Rule struct {
|
|
Priority int
|
|
Family int
|
|
Table int
|
|
Mark int
|
|
Mask int
|
|
Tos uint
|
|
TunID uint
|
|
Goto int
|
|
Src *net.IPNet
|
|
Dst *net.IPNet
|
|
Flow int
|
|
IifName string
|
|
OifName string
|
|
SuppressIfgroup int
|
|
SuppressPrefixlen int
|
|
Invert bool
|
|
Dport *RulePortRange
|
|
Sport *RulePortRange
|
|
}
|
|
|
|
func (r Rule) String() string {
|
|
return fmt.Sprintf("ip rule %d: from %s table %d", r.Priority, r.Src, r.Table)
|
|
}
|
|
|
|
// NewRule return empty rules.
|
|
func NewRule() *Rule {
|
|
return &Rule{
|
|
SuppressIfgroup: -1,
|
|
SuppressPrefixlen: -1,
|
|
Priority: -1,
|
|
Mark: -1,
|
|
Mask: -1,
|
|
Goto: -1,
|
|
Flow: -1,
|
|
}
|
|
}
|
|
|
|
// NewRulePortRange creates rule sport/dport range.
|
|
func NewRulePortRange(start, end uint16) *RulePortRange {
|
|
return &RulePortRange{Start: start, End: end}
|
|
}
|
|
|
|
// RulePortRange represents rule sport/dport range.
|
|
type RulePortRange struct {
|
|
Start uint16
|
|
End uint16
|
|
}
|