diff options
author | Florin Coras <fcoras@cisco.com> | 2019-11-14 23:32:08 -0800 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-11-28 10:06:34 +0000 |
commit | 48f8eb3dc335709ae2869e7d8f30a1214b28be96 (patch) | |
tree | 843082bc5268c242a91093cfbbd6ce5ec588c300 /src | |
parent | 72ab186f13a7aa0dc9f4ea8bb81bcb8cb494095b (diff) |
tcp: close session on retransmit failure
Type: fix
Since the connection is closed, also mark the session as closed.
Change-Id: Ica3849c3ff12fa7a65ba64e563a60d6c94f5ceca
Signed-off-by: Florin Coras <fcoras@cisco.com>
(cherry picked from commit 52be67435eb4615b899950b42b8ff72d258fbcb3)
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/tcp/tcp_output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp_output.c b/src/vnet/tcp/tcp_output.c index 094c84c5e28..c1ecaba1fb3 100644 --- a/src/vnet/tcp/tcp_output.c +++ b/src/vnet/tcp/tcp_output.c @@ -1515,6 +1515,7 @@ tcp_timer_retransmit_handler (u32 tc_index) tcp_send_reset (tc); tcp_connection_set_state (tc, TCP_STATE_CLOSED); session_transport_closing_notify (&tc->connection); + session_transport_closed_notify (&tc->connection); tcp_connection_timers_reset (tc); tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time); return; |