diff options
author | Florin Coras <fcoras@cisco.com> | 2019-02-18 13:02:28 -0800 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2019-02-18 19:06:39 -0800 |
commit | a27a46eaebee7b1d84a6ce998d9c92048b0654b6 (patch) | |
tree | 81c12ad198e83857d49627606044bec870553ef0 /src/vnet/tcp | |
parent | 25cfb775e38b1d245e9c2cee75a77086f8f80913 (diff) |
session: move fifo allocation logic to app worker
Change-Id: I1662ec4b5503cb64a8a86a2441842311d959b3a6
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp')
-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 3d8ae890372..c5dfb3f7372 100644 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -2763,7 +2763,7 @@ tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node, /* Reset SYN-ACK retransmit and SYN_RCV establish timers */ tcp_retransmit_timer_reset (tc0); tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH); - if (stream_session_accept_notify (&tc0->connection)) + if (session_stream_accept_notify (&tc0->connection)) { error0 = TCP_ERROR_MSG_QUEUE_FULL; tcp_connection_reset (tc0); |