~james-page/ubuntu/saucy/openvswitch/1.12-snapshot

« back to all changes in this revision

Viewing changes to lib/match.h

  • Committer: James Page
  • Date: 2013-08-21 10:16:57 UTC
  • mfrom: (1.1.20)
  • Revision ID: james.page@canonical.com-20130821101657-3o0z0qeiv5zkwlzi
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
void match_set_tun_tos_masked(struct match *match, uint8_t tos, uint8_t mask);
61
61
void match_set_tun_flags(struct match *match, uint16_t flags);
62
62
void match_set_tun_flags_masked(struct match *match, uint16_t flags, uint16_t mask);
63
 
void match_set_in_port(struct match *, uint16_t ofp_port);
 
63
void match_set_in_port(struct match *, ofp_port_t ofp_port);
64
64
void match_set_skb_mark(struct match *, uint32_t skb_mark);
65
65
void match_set_skb_priority(struct match *, uint32_t skb_priority);
66
66
void match_set_dl_type(struct match *, ovs_be16);
78
78
void match_set_vlan_vid_masked(struct match *, ovs_be16 vid, ovs_be16 mask);
79
79
void match_set_any_pcp(struct match *);
80
80
void match_set_dl_vlan_pcp(struct match *, uint8_t);
 
81
void match_set_any_mpls_label(struct match *);
 
82
void match_set_mpls_label(struct match *, ovs_be32);
 
83
void match_set_any_mpls_tc(struct match *);
 
84
void match_set_mpls_tc(struct match *, uint8_t);
 
85
void match_set_any_mpls_bos(struct match *);
 
86
void match_set_mpls_bos(struct match *, uint8_t);
81
87
void match_set_tp_src(struct match *, ovs_be16);
82
88
void match_set_tp_src_masked(struct match *, ovs_be16 port, ovs_be16 mask);
83
89
void match_set_tp_dst(struct match *, ovs_be16);