diff options
author | Florin Coras <fcoras@cisco.com> | 2020-02-18 20:17:30 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-02-18 22:54:21 +0000 |
commit | dd398c6c5cbf388e912de33dbe63a441fa1e0886 (patch) | |
tree | cb7d7fdf23cae6bf7b1c7be01714050da595420e /src | |
parent | 2fc4091319bdbbac25ce1132cfb73b5077426b75 (diff) |
tcp: add fib to connection cli output
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I3de653fd90b8030125b627f751c7fb665ade5aee
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/tcp/tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index 28231763da1..c4da23c957b 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -969,8 +969,8 @@ format_tcp_vars (u8 * s, va_list * args) tc->rto, tc->rto_boff, tc->srtt, tc->mrtt_us * 1000, tc->rttvar, tc->rtt_ts); s = format (s, " rtt_seq %u\n", tc->rtt_seq - tc->iss); - s = format (s, " next_node %u opaque 0x%x\n", tc->next_node_index, - tc->next_node_opaque); + s = format (s, " next_node %u opaque 0x%x fib_index %u\n", + tc->next_node_index, tc->next_node_opaque, tc->c_fib_index); s = format (s, " cong: %U", format_tcp_congestion, tc); if (tc->state >= TCP_STATE_ESTABLISHED) |