diff options
author | Florin Coras <fcoras@cisco.com> | 2019-04-02 19:03:23 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-04-04 10:01:52 +0000 |
commit | 070fd4b046265e7aabe3f9e226e769441db18d79 (patch) | |
tree | 854602b66086d7d311bbdc2d17533bba783aae68 /src/vnet/tcp/tcp_debug.h | |
parent | deb8af6eb71f9ad951137ee6e84e971c3ab23ec4 (diff) |
tcp: shorten wait in fin-wait-1 with fin rcvd
Change-Id: Ifddc32ab3da0e691ac3df74ff26e19f6fa00fef7
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp_debug.h')
-rwxr-xr-x | src/vnet/tcp/tcp_debug.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/vnet/tcp/tcp_debug.h b/src/vnet/tcp/tcp_debug.h index cf074925435..23ad39187c2 100755 --- a/src/vnet/tcp/tcp_debug.h +++ b/src/vnet/tcp/tcp_debug.h @@ -201,11 +201,12 @@ typedef enum _tcp_dbg_evt TCP_EVT_INIT_HANDLER(_tc, 0); \ ELOG_TYPE_DECLARE (_e) = \ { \ - .format = "syn-rx: irs %u", \ - .format_args = "i4", \ + .format = "syn-rx: idx %u irs %u", \ + .format_args = "i4i4", \ }; \ - DECLARE_ETD(_tc, _e, 1); \ - ed->data[0] = _tc->irs; \ + DECLARE_ETD(_tc, _e, 2); \ + ed->data[0] = _tc->c_c_index; \ + ed->data[1] = _tc->irs; \ TCP_EVT_STATE_CHANGE_HANDLER(_tc); \ } |