mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/containernetworking/plugins](https://github.com/containernetworking/plugins) from 1.1.1 to 1.2.0. - [Release notes](https://github.com/containernetworking/plugins/releases) - [Commits](https://github.com/containernetworking/plugins/compare/v1.1.1...v1.2.0) --- updated-dependencies: - dependency-name: github.com/containernetworking/plugins dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
69 lines
1.4 KiB
Go
69 lines
1.4 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
|
|
IPProto int
|
|
}
|
|
|
|
func (r Rule) String() string {
|
|
from := "all"
|
|
if r.Src != nil && r.Src.String() != "<nil>" {
|
|
from = r.Src.String()
|
|
}
|
|
|
|
to := "all"
|
|
if r.Dst != nil && r.Dst.String() != "<nil>" {
|
|
to = r.Dst.String()
|
|
}
|
|
|
|
return fmt.Sprintf("ip rule %d: from %s to %s table %d",
|
|
r.Priority, from, to, 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
|
|
}
|