From: Simon Horman Date: Tue, 12 Nov 2013 07:45:51 +0000 (+0900) Subject: ofproto: Add enum ofp_table_config X-Git-Tag: sliver-openvswitch-2.0.90-1~5^2~37 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=3767b63136bdd2b070e0638b8fd8f3b24cf9277e;p=sliver-openvswitch.git ofproto: Add enum ofp_table_config Cc: Andy Zhou Signed-off-by: Simon Horman Signed-off-by: Ben Pfaff --- diff --git a/include/openflow/openflow-common.h b/include/openflow/openflow-common.h index 234bf96cc..ef9409f56 100644 --- a/include/openflow/openflow-common.h +++ b/include/openflow/openflow-common.h @@ -475,4 +475,12 @@ enum ofp_table { flow stats and flow deletes. */ }; +enum ofp_table_config { + OFPTC_TABLE_MISS_CONTROLLER = 0 << 0, /* Send to controller. */ + OFPTC_TABLE_MISS_CONTINUE = 1 << 0, /* Continue to the next table in the + pipeline (OpenFlow 1.0 behavior). */ + OFPTC_TABLE_MISS_DROP = 2 << 0, /* Drop the packet. */ + OFPTC_TABLE_MISS_MASK = 3 << 0 +}; + #endif /* openflow/openflow-common.h */