summaryrefslogtreecommitdiff
path: root/include/openflow
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@ovn.org>2016-08-18 14:09:41 -0700
committerJustin Pettit <jpettit@ovn.org>2016-09-23 12:06:59 -0700
commit2a7c4805a76d5a06f28346e1cf992c57b1c8871d (patch)
tree45a8d647675d6ddf8d19a352af26f18823a0040b /include/openflow
parent14338f2263f5242f5caa3f97831961836e8891b8 (diff)
downloadopenvswitch-2a7c4805a76d5a06f28346e1cf992c57b1c8871d.tar.gz
Add OpenFlow command to flush conntrack table entries.
Signed-off-by: Justin Pettit <jpettit@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'include/openflow')
-rw-r--r--include/openflow/nicira-ext.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/openflow/nicira-ext.h b/include/openflow/nicira-ext.h
index 5ab026c46..9d53623e5 100644
--- a/include/openflow/nicira-ext.h
+++ b/include/openflow/nicira-ext.h
@@ -1128,5 +1128,14 @@ struct nx_tlv_table_reply {
from the length field in the header. */
};
OFP_ASSERT(sizeof(struct nx_tlv_table_reply) == 16);
+
+/* NXT_CT_FLUSH_ZONE.
+ *
+ * Flushes the connection tracking table. */
+struct nx_zone_id {
+ uint8_t zero[6]; /* Must be zero. */
+ ovs_be16 zone_id; /* Connection tracking zone. */
+};
+OFP_ASSERT(sizeof(struct nx_zone_id) == 8);
#endif /* openflow/nicira-ext.h */