vswitch: Implement bundle action.
[sliver-openvswitch.git] / lib / ofp-print.c
index 4f4e33c..aa3ff54 100644 (file)
@@ -26,6 +26,7 @@
 #include <stdlib.h>
 #include <ctype.h>
 
+#include "bundle.h"
 #include "byte-order.h"
 #include "compiler.h"
 #include "dynamic-string.h"
@@ -342,6 +343,10 @@ ofp_print_action(struct ds *s, const union ofp_action *a,
         ds_put_char(s, ')');
         break;
 
+    case OFPUTIL_NXAST_BUNDLE:
+        bundle_format((const struct nx_action_bundle *) a, s);
+        break;
+
     default:
         break;
     }