This is an automated email from the ASF dual-hosted git repository.
maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 5886fb2 Fix inactivity timeout on QUIC
5886fb2 is described below
commit 5886fb212e03630a8fa13768d1fff97d9b18d673
Author: Masakazu Kitajo <[email protected]>
AuthorDate: Mon Aug 19 10:16:53 2019 +0900
Fix inactivity timeout on QUIC
The event name was changed by #5824
---
iocore/net/QUICNetVConnection.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/iocore/net/QUICNetVConnection.cc b/iocore/net/QUICNetVConnection.cc
index 6755703..7070727 100644
--- a/iocore/net/QUICNetVConnection.cc
+++ b/iocore/net/QUICNetVConnection.cc
@@ -811,7 +811,7 @@ QUICNetVConnection::state_handshake(int event, Event *data)
case QUIC_EVENT_PATH_VALIDATION_TIMEOUT:
this->_handle_path_validation_timeout(data);
break;
- case EVENT_IMMEDIATE:
+ case VC_EVENT_INACTIVITY_TIMEOUT:
// Start Immediate Close because of Idle Timeout
this->_handle_idle_timeout();
break;
@@ -847,7 +847,7 @@ QUICNetVConnection::state_connection_established(int event,
Event *data)
case QUIC_EVENT_PATH_VALIDATION_TIMEOUT:
this->_handle_path_validation_timeout(data);
break;
- case EVENT_IMMEDIATE:
+ case VC_EVENT_INACTIVITY_TIMEOUT:
// Start Immediate Close because of Idle Timeout
this->_handle_idle_timeout();
break;