summaryrefslogtreecommitdiff
path: root/lib/flow.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2013-08-27 12:25:48 -0700
committerBen Pfaff <blp@nicira.com>2013-08-27 13:23:01 -0700
commitb2c1f00b730c3b92e8c1ff37b7d0f8c7a9a44934 (patch)
treecf71c6b96ca6257fe36b44c72435753f92541187 /lib/flow.h
parent1828ae514071007c9a0180889151ce9b00aae8fc (diff)
downloadopenvswitch-b2c1f00b730c3b92e8c1ff37b7d0f8c7a9a44934.tar.gz
classifier: New function cls_rule_move().
This function will acquire its first user in an upcoming commit. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'lib/flow.h')
-rw-r--r--lib/flow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/flow.h b/lib/flow.h
index ecd850a6c..75d95e8ec 100644
--- a/lib/flow.h
+++ b/lib/flow.h
@@ -321,6 +321,7 @@ struct miniflow {
void miniflow_init(struct miniflow *, const struct flow *);
void miniflow_clone(struct miniflow *, const struct miniflow *);
+void miniflow_move(struct miniflow *dst, struct miniflow *);
void miniflow_destroy(struct miniflow *);
void miniflow_expand(const struct miniflow *, struct flow *);
@@ -350,6 +351,7 @@ struct minimask {
void minimask_init(struct minimask *, const struct flow_wildcards *);
void minimask_clone(struct minimask *, const struct minimask *);
+void minimask_move(struct minimask *dst, struct minimask *src);
void minimask_combine(struct minimask *dst,
const struct minimask *a, const struct minimask *b,
uint32_t storage[FLOW_U32S]);