diff options
author | Florin Coras <fcoras@cisco.com> | 2018-04-20 10:51:49 -0700 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2018-04-30 23:50:41 -0700 |
commit | c1a448b3ad16f4ae78527220420fe5c1e41a4ab9 (patch) | |
tree | bcccc20a32a8dfdd27c8eb32e20681ec30785c86 /src/vnet/tcp/tcp_input.c | |
parent | f4addbd03a21c6aa2a25d693cfd66988605fff36 (diff) |
tcp/session: debug improvements/fixes
Change-Id: I906e58b4f9827a79a6ab673f8fa2e03036c69820
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp_input.c')
-rw-r--r-- | src/vnet/tcp/tcp_input.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index a1cdc76c626..497b709bec0 100644 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -2780,9 +2780,8 @@ tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node, /* 3. check for a SYN (did that already) */ /* Make sure connection wasn't just created */ - child0 = - tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index, - is_ip4); + child0 = tcp_lookup_connection (lc0->c_fib_index, b0, + my_thread_index, is_ip4); if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN)) { error0 = TCP_ERROR_CREATE_EXISTS; |