ofp-print: Print out_port field in "flow_mod"s.
[openvswitch] / lib / ofp-print.c
index 0050c0a5246e568b58f76ff2932bf6ad7d8bf93c..a21c79e416b9a26d942197105ee8b541c3aff0d8 100644 (file)
@@ -753,6 +753,11 @@ ofp_print_flow_mod(struct ds *s, const struct ofp_header *oh,
     if (fm.buffer_id != UINT32_MAX) {
         ds_put_format(s, "buf:0x%"PRIx32" ", fm.buffer_id);
     }
+    if (fm.out_port != OFPP_NONE) {
+        ds_put_format(s, "out_port:");
+        ofputil_format_port(fm.out_port, s);
+        ds_put_char(s, ' ');
+    }
     if (fm.flags != 0) {
         uint16_t flags = fm.flags;