Ejemplo n.º 1
0
void
match_set_pkt_mark(struct match *match, uint32_t pkt_mark)
{
    match_set_pkt_mark_masked(match, pkt_mark, UINT32_MAX);
}
Ejemplo n.º 2
0
FlowBuilder& FlowBuilder::mark(uint32_t value, uint32_t mask) {
    match_set_pkt_mark_masked(match(), value, mask);
    return *this;
}