diff options
author | 2025-02-24 00:20:32 -0500 | |
---|---|---|
committer | 2025-02-24 05:33:23 +0000 | |
commit | d6d44bd4735c23c8ce2ed314551a20a044199412 (patch) | |
tree | 2753d473191d731fa12eaaffb289e1afa7e1323d | |
parent | 51070e1457af637cfb5f2fecb2b8f15b540cc537 (diff) |
udp: fix cli for next node and opaque
Type: fix
Change-Id: I77c2d8e64ed463b1c8e84e0fca8d79684a88714c
Signed-off-by: Florin Coras <fcoras@cisco.com>
-rw-r--r-- | src/vnet/udp/udp_cli.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 |