tcp: close session on retransmit failure 59/23459/2
authorFlorin Coras <fcoras@cisco.com>
Fri, 15 Nov 2019 07:32:08 +0000 (23:32 -0800)
committerDave Barach <openvpp@barachs.net>
Sat, 16 Nov 2019 18:39:36 +0000 (18:39 +0000)
Type: fix

Since the connection is closed, also mark the session as closed.

Change-Id: Ica3849c3ff12fa7a65ba64e563a60d6c94f5ceca
Signed-off-by: Florin Coras <fcoras@cisco.com>
src/vnet/tcp/tcp_output.c

index 7be3de8..64e3b1a 100644 (file)
@@ -1518,6 +1518,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;