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/02/22 03:49:50 UTC

[trafficserver] branch quic-latest updated: Return CreationResult::IGNOER when keys for decryption are not ready

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

maskit 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 6706e60  Return CreationResult::IGNOER when keys for decryption are not ready
6706e60 is described below

commit 6706e60b8c49c64df3c42d4ff415d2986bee02af
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Thu Feb 22 12:34:28 2018 +0900

    Return CreationResult::IGNOER when keys for decryption are not ready
---
 iocore/net/QUICNetVConnection.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/QUICNetVConnection.cc b/iocore/net/QUICNetVConnection.cc
index 25d92cd..bae9e01 100644
--- a/iocore/net/QUICNetVConnection.cc
+++ b/iocore/net/QUICNetVConnection.cc
@@ -1181,7 +1181,7 @@ QUICNetVConnection::_dequeue_recv_packet(QUICPacketCreationResult &result)
     // FIXME: unordered packet should be buffered and retried
     udp_packet->free();
     if (this->_packet_recv_queue.size > 0) {
-      result = QUICPacketCreationResult::SUCCESS;
+      result = QUICPacketCreationResult::IGNORED;
     }
     this_ethread()->schedule_in_local(this, HRTIME_MSECONDS(10), QUIC_EVENT_PACKET_READ_READY);
   } else if (result == QUICPacketCreationResult::IGNORED) {

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