udp: improvements to connection format fn 23/38823/5
authorFlorin Coras <fcoras@cisco.com>
Fri, 12 May 2023 23:35:14 +0000 (16:35 -0700)
committerDave Wallace <dwallacelf@gmail.com>
Mon, 15 May 2023 17:54:49 +0000 (17:54 +0000)
Print fib-index, next node index and opaque.

Type: improvement

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Id2ff265c9acffc75f8b04fb9f26c6d571fc2ef98

src/vnet/udp/udp_cli.c

index 72dd9d8..d60f0dd 100644 (file)
@@ -95,10 +95,13 @@ format_udp_vars (u8 * s, va_list * args)
 {
   udp_connection_t *uc = va_arg (*args, udp_connection_t *);
 
-  s = format (s, " index %u%U flags: %U", uc->c_c_index, format_udp_cfg_flags,
-             uc, format_udp_connection_flags, uc);
+  s = format (s, " index %u%U flags: %U\n", uc->c_c_index,
+             format_udp_cfg_flags, uc, format_udp_connection_flags, uc);
+  s = format (s, " fib_index: %u next_node: %u opaque: %u ", uc->c_fib_index);
   if (!(uc->flags & UDP_CONN_F_LISTEN))
-    s = format (s, " \n sw_if_index: %d, mss: %u\n", uc->sw_if_index, uc->mss);
+    s = format (s, " sw_if_index: %d mss: %u\n", uc->sw_if_index, uc->mss);
+  else
+    s = format (s, "\n");
 
   return s;
 }