diff options
author | Steven Luong <sluong@cisco.com> | 2022-07-25 09:29:23 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-08-31 16:19:15 +0000 |
commit | bf12efc432823c83dc06ead6be2094ac605f0021 (patch) | |
tree | d28b0f2308e606eb4af6cc687eb80b61587e76d2 /src/vnet/udp/udp_cli.c | |
parent | 005ef97f80e2327e6f6e6383e9c6a197a0d8b1f8 (diff) |
udp: store mss and sw_if_index to udp_connection_t
Store mss and sw_if_index to udp_connection_t and display them via
show sessipn verbose 2
Type: fix
Signed-off-by: Steven Luong <sluong@cisco.com>
Change-Id: I32928f3f4195b178873dc1bada702e035d99c464
Diffstat (limited to 'src/vnet/udp/udp_cli.c')
-rw-r--r-- | src/vnet/udp/udp_cli.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vnet/udp/udp_cli.c b/src/vnet/udp/udp_cli.c index 3b7bb380c89..9787eedf933 100644 --- a/src/vnet/udp/udp_cli.c +++ b/src/vnet/udp/udp_cli.c @@ -67,11 +67,12 @@ static u8 * format_udp_vars (u8 * s, va_list * args) { udp_connection_t *uc = va_arg (*args, udp_connection_t *); + s = format (s, " index %u flags: %U", uc->c_c_index, format_udp_connection_flags, uc); - if (!(uc->flags & UDP_CONN_F_LISTEN)) - s = format (s, "\n"); + s = format (s, " \n sw_if_index: %d, mss: %u\n", uc->sw_if_index, uc->mss); + return s; } |