mirror of
https://github.com/vishvananda/netlink
synced 2025-04-01 22:58:37 +00:00
Fix review comment
Signed-off-by: Artem Glazychev <artem.glazychev@xored.com>
This commit is contained in:
parent
5a3e901175
commit
d6b03fdeb8
@ -152,6 +152,12 @@ func ruleHandle(rule *Rule, req *nl.NetlinkRequest) error {
|
|||||||
req.AddData(nl.NewRtAttr(nl.FRA_GOTO, b))
|
req.AddData(nl.NewRtAttr(nl.FRA_GOTO, b))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if rule.IPProto > 0 {
|
||||||
|
b := make([]byte, 4)
|
||||||
|
native.PutUint32(b, uint32(rule.IPProto))
|
||||||
|
req.AddData(nl.NewRtAttr(nl.FRA_IP_PROTO, b))
|
||||||
|
}
|
||||||
|
|
||||||
if rule.Dport != nil {
|
if rule.Dport != nil {
|
||||||
b := rule.Dport.toRtAttrData()
|
b := rule.Dport.toRtAttrData()
|
||||||
req.AddData(nl.NewRtAttr(nl.FRA_DPORT_RANGE, b))
|
req.AddData(nl.NewRtAttr(nl.FRA_DPORT_RANGE, b))
|
||||||
@ -162,12 +168,6 @@ func ruleHandle(rule *Rule, req *nl.NetlinkRequest) error {
|
|||||||
req.AddData(nl.NewRtAttr(nl.FRA_SPORT_RANGE, b))
|
req.AddData(nl.NewRtAttr(nl.FRA_SPORT_RANGE, b))
|
||||||
}
|
}
|
||||||
|
|
||||||
if rule.IPProto > 0 {
|
|
||||||
b := make([]byte, 4)
|
|
||||||
native.PutUint32(b, uint32(rule.IPProto))
|
|
||||||
req.AddData(nl.NewRtAttr(nl.FRA_IP_PROTO, b))
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := req.Execute(unix.NETLINK_ROUTE, 0)
|
_, err := req.Execute(unix.NETLINK_ROUTE, 0)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -256,6 +256,8 @@ func (h *Handle) RuleListFiltered(family int, filter *Rule, filterMask uint64) (
|
|||||||
rule.Goto = int(native.Uint32(attrs[j].Value[0:4]))
|
rule.Goto = int(native.Uint32(attrs[j].Value[0:4]))
|
||||||
case nl.FRA_PRIORITY:
|
case nl.FRA_PRIORITY:
|
||||||
rule.Priority = int(native.Uint32(attrs[j].Value[0:4]))
|
rule.Priority = int(native.Uint32(attrs[j].Value[0:4]))
|
||||||
|
case nl.FRA_IP_PROTO:
|
||||||
|
rule.IPProto = int(native.Uint32(attrs[j].Value[0:4]))
|
||||||
case nl.FRA_DPORT_RANGE:
|
case nl.FRA_DPORT_RANGE:
|
||||||
rule.Dport = NewRulePortRange(native.Uint16(attrs[j].Value[0:2]), native.Uint16(attrs[j].Value[2:4]))
|
rule.Dport = NewRulePortRange(native.Uint16(attrs[j].Value[0:2]), native.Uint16(attrs[j].Value[2:4]))
|
||||||
case nl.FRA_SPORT_RANGE:
|
case nl.FRA_SPORT_RANGE:
|
||||||
|
@ -418,5 +418,6 @@ func ruleEquals(a, b Rule) bool {
|
|||||||
a.Priority == b.Priority &&
|
a.Priority == b.Priority &&
|
||||||
a.IifName == b.IifName &&
|
a.IifName == b.IifName &&
|
||||||
a.Invert == b.Invert &&
|
a.Invert == b.Invert &&
|
||||||
a.Tos == b.Tos
|
a.Tos == b.Tos &&
|
||||||
|
a.IPProto == b.IPProto
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user