X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fofp-util.h;h=fdca005fb217a155445e9fefc4798300e070d89d;hb=0df0e81da2351902c93e8a1ae1933523a91a8262;hp=b1619bb6be40ce57157a9e11307ebf81f327e058;hpb=0596e89755cea856d9615a46c17c4df2574107a3;p=openvswitch diff --git a/lib/ofp-util.h b/lib/ofp-util.h index b1619bb6..fdca005f 100644 --- a/lib/ofp-util.h +++ b/lib/ofp-util.h @@ -24,6 +24,7 @@ #include "flow.h" #include "openvswitch/types.h" +struct cls_rule; struct ofpbuf; struct ofp_action_header; @@ -35,6 +36,15 @@ struct ofp_action_header; ovs_be32 ofputil_wcbits_to_netmask(int wcbits); int ofputil_netmask_to_wcbits(ovs_be32 netmask); +/* Work with OpenFlow 1.0 ofp_match. */ +void ofputil_cls_rule_from_match(const struct ofp_match *, + unsigned int priority, int flow_format, + uint64_t cookie, struct cls_rule *); +void ofputil_cls_rule_to_match(const struct cls_rule *, int flow_format, + struct ofp_match *); +void normalize_match(struct ofp_match *); +char *ofp_match_to_literal_string(const struct ofp_match *match); + /* OpenFlow protocol utility functions. */ void *make_openflow(size_t openflow_len, uint8_t type, struct ofpbuf **); void *make_nxmsg(size_t openflow_len, uint32_t subtype, struct ofpbuf **); @@ -46,12 +56,12 @@ void *put_openflow(size_t openflow_len, uint8_t type, struct ofpbuf *); void *put_openflow_xid(size_t openflow_len, uint8_t type, ovs_be32 xid, struct ofpbuf *); void update_openflow_length(struct ofpbuf *); -struct ofpbuf *make_flow_mod(uint16_t command, const struct flow *, +struct ofpbuf *make_flow_mod(uint16_t command, const struct cls_rule *, size_t actions_len); -struct ofpbuf *make_add_flow(const struct flow *, uint32_t buffer_id, +struct ofpbuf *make_add_flow(const struct cls_rule *, uint32_t buffer_id, uint16_t max_idle, size_t actions_len); -struct ofpbuf *make_del_flow(const struct flow *); -struct ofpbuf *make_add_simple_flow(const struct flow *, +struct ofpbuf *make_del_flow(const struct cls_rule *); +struct ofpbuf *make_add_simple_flow(const struct cls_rule *, uint32_t buffer_id, uint16_t out_port, uint16_t max_idle); struct ofpbuf *make_packet_in(uint32_t buffer_id, uint16_t in_port, @@ -90,9 +100,6 @@ int validate_actions(const union ofp_action *, size_t n_actions, const struct flow *, int max_ports); bool action_outputs_to_port(const union ofp_action *, uint16_t port); -void normalize_match(struct ofp_match *); -char *ofp_match_to_literal_string(const struct ofp_match *match); - int ofputil_pull_actions(struct ofpbuf *, unsigned int actions_len, union ofp_action **, size_t *);