diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-06-13 10:14:28 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-06-17 14:05:37 +0000 |
commit | 2f0f96b9dbcb198dede1e5ebd4d880129d5d52c8 (patch) | |
tree | 41dc5f84d8fadda65234f5c990dbdc78392b0d91 /src/vnet/tcp/tcp_input.c | |
parent | 8a2fa3b482b2f32da8e0b634fd09c9bdef2e9443 (diff) |
session: use listener_handle instead of listener_index
Type: refactor
Change-Id: I97fa59a0ba0b6b7a98698926020ffffcf6ae6ba3
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/vnet/tcp/tcp_input.c')
-rw-r--r-- | src/vnet/tcp/tcp_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index 304f725cd32..6c78af0fc88 100644 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -3190,7 +3190,7 @@ tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node, child0->rto = TCP_RTO_MIN; if (session_stream_accept (&child0->connection, lc0->c_s_index, - 0 /* notify */ )) + lc0->c_thread_index, 0 /* notify */ )) { tcp_connection_cleanup (child0); error0 = TCP_ERROR_CREATE_SESSION_FAIL; |