X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fmatch.h;h=7a8ae688f93f3fcc8bc7dbbadd743f9a210177df;hb=5de43a606c949dbb74272d5b09627ddd5f64b06b;hp=ee01acdf7e2b08ae238b3da3efd90bda8e440c44;hpb=476f36e83bc5b0ca7f11952a23bb0fef76d1cc4b;p=sliver-openvswitch.git diff --git a/lib/match.h b/lib/match.h index ee01acdf7..7a8ae688f 100644 --- a/lib/match.h +++ b/lib/match.h @@ -78,13 +78,16 @@ void match_set_vlan_vid(struct match *, ovs_be16); void match_set_vlan_vid_masked(struct match *, ovs_be16 vid, ovs_be16 mask); void match_set_any_pcp(struct match *); void match_set_dl_vlan_pcp(struct match *, uint8_t); -void match_set_any_mpls_label(struct match *); -void match_set_mpls_label(struct match *, ovs_be32); -void match_set_any_mpls_tc(struct match *); -void match_set_mpls_tc(struct match *, uint8_t); -void match_set_any_mpls_bos(struct match *); -void match_set_mpls_bos(struct match *, uint8_t); +void match_set_any_mpls_lse(struct match *, int idx); +void match_set_mpls_lse(struct match *, int idx, ovs_be32); +void match_set_any_mpls_label(struct match *, int idx); +void match_set_mpls_label(struct match *, int idx, ovs_be32); +void match_set_any_mpls_tc(struct match *, int idx); +void match_set_mpls_tc(struct match *, int idx, uint8_t); +void match_set_any_mpls_bos(struct match *, int idx); +void match_set_mpls_bos(struct match *, int idx, uint8_t); void match_set_tp_src(struct match *, ovs_be16); +void match_set_mpls_lse(struct match *, int idx, ovs_be32 lse); void match_set_tp_src_masked(struct match *, ovs_be16 port, ovs_be16 mask); void match_set_tp_dst(struct match *, ovs_be16); void match_set_tp_dst_masked(struct match *, ovs_be16 port, ovs_be16 mask);