From d6d44bd4735c23c8ce2ed314551a20a044199412 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 24 Feb 2025 00:20:32 -0500 Subject: udp: fix cli for next node and opaque Type: fix Change-Id: I77c2d8e64ed463b1c8e84e0fca8d79684a88714c Signed-off-by: Florin Coras --- src/vnet/udp/udp_cli.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/vnet/udp') diff --git a/src/vnet/udp/udp_cli.c b/src/vnet/udp/udp_cli.c index 6c8992cd0de..dd1da0a01d6 100644 --- a/src/vnet/udp/udp_cli.c +++ b/src/vnet/udp/udp_cli.c @@ -97,7 +97,8 @@ format_udp_vars (u8 * s, va_list * args) 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); + s = format (s, " fib_index: %u next_node: %u opaque: %u ", uc->c_fib_index, + uc->next_node_index, uc->next_node_opaque); if (!(uc->flags & UDP_CONN_F_LISTEN)) s = format (s, " sw_if_index: %d mss: %u\n", uc->sw_if_index, uc->mss); else -- cgit