2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

Add some missing Open Flow 1.1 definitions

Signed-off-by: Simon Horman <horms@verge.net.au>
[blp@nicira.com added OFPRR_GROUP_DELETE to
 ofp_flow_removed_reason_to_string()]
Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Simon Horman
2012-03-30 11:30:00 +09:00
committed by Ben Pfaff
parent 688af17644
commit 04f68eb209
3 changed files with 557 additions and 1 deletions

View File

@@ -1025,6 +1025,8 @@ ofp_flow_removed_reason_to_string(enum ofp_flow_removed_reason reason)
return "hard";
case OFPRR_DELETE:
return "delete";
case OFPRR_GROUP_DELETE:
return "group_delete";
default:
sprintf(s, "%d", (int) reason);
return s;