You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2018/01/22 04:45:19 UTC

[trafficserver] branch quic-latest updated: Deactivate QUICNetVC on closing state

This is an automated email from the ASF dual-hosted git repository.

masaori pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/quic-latest by this push:
     new 9549f57  Deactivate QUICNetVC on closing state
9549f57 is described below

commit 9549f57290fb9d44ba7f175ba18834d3bdd248cd
Author: Masaori Koshiba <ma...@apache.org>
AuthorDate: Mon Jan 22 15:43:14 2018 +1100

    Deactivate QUICNetVC on closing state
---
 iocore/net/QUICNetVConnection.cc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/iocore/net/QUICNetVConnection.cc b/iocore/net/QUICNetVConnection.cc
index aec2fb2..e30c324 100644
--- a/iocore/net/QUICNetVConnection.cc
+++ b/iocore/net/QUICNetVConnection.cc
@@ -1198,6 +1198,9 @@ QUICNetVConnection::_switch_to_closing_state(QUICConnectionErrorUPtr error)
   } else {
     this->transmit_frame(QUICFrameFactory::create_connection_close_frame(std::move(error)));
   }
+
+  this->remove_from_active_queue();
+
   QUICConDebug("Enter state_connection_closing");
   SET_HANDLER((NetVConnHandler)&QUICNetVConnection::state_connection_closing);
 }

-- 
To stop receiving notification emails like this one, please contact
masaori@apache.org.