udp: improvements to connection format fn
Print fib-index, next node index and opaque. Type: improvement Signed-off-by: Florin Coras <fcoras@cisco.com> Change-Id: Id2ff265c9acffc75f8b04fb9f26c6d571fc2ef98
This commit is contained in:

committed by
Dave Wallace

parent
639beb91f6
commit
9794326125
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user