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/05/17 01:28:50 UTC

[trafficserver] branch quic-latest updated (041f420 -> ba77c64)

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

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


    from 041f420  Print lower 64 bits of source CID at maximum
     new df23d49  Update largest received packet number
     new ba77c64  Add AL header

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 iocore/net/quic/QUICPacketReceiveQueue.cc | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

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

[trafficserver] 02/02: Add AL header

Posted by ma...@apache.org.
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

commit ba77c64514e9d585ed68c7c3251fe131af8c56c8
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Thu May 17 10:28:14 2018 +0900

    Add AL header
---
 iocore/net/quic/QUICPacketReceiveQueue.cc | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/iocore/net/quic/QUICPacketReceiveQueue.cc b/iocore/net/quic/QUICPacketReceiveQueue.cc
index 9dec772..ded0453 100644
--- a/iocore/net/quic/QUICPacketReceiveQueue.cc
+++ b/iocore/net/quic/QUICPacketReceiveQueue.cc
@@ -1,3 +1,26 @@
+/** @file
+ *
+ *  A brief file description
+ *
+ *  @section license License
+ *
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you under the Apache License, Version 2.0 (the
+ *  "License"); you may not use this file except in compliance
+ *  with the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+
 #include "QUICPacketReceiveQueue.h"
 
 QUICPacketReceiveQueue::QUICPacketReceiveQueue(QUICPacketFactory &packet_factory) : _packet_factory(packet_factory) {}

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

[trafficserver] 01/02: Update largest received packet number

Posted by ma...@apache.org.
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

commit df23d49602dbef944a22a4a67147648b8ba3dff9
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Thu May 17 10:25:20 2018 +0900

    Update largest received packet number
    
    The update logic was accidentally lost with 7cb18b38d88fd6af13eed65867701117cbc890ae
---
 iocore/net/quic/QUICPacketReceiveQueue.cc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/iocore/net/quic/QUICPacketReceiveQueue.cc b/iocore/net/quic/QUICPacketReceiveQueue.cc
index 640dcaa..9dec772 100644
--- a/iocore/net/quic/QUICPacketReceiveQueue.cc
+++ b/iocore/net/quic/QUICPacketReceiveQueue.cc
@@ -39,6 +39,10 @@ QUICPacketReceiveQueue::dequeue(QUICPacketCreationResult &result)
     }
   }
 
+  if (quic_packet->packet_number() > this->_largest_received_packet_number) {
+    this->_largest_received_packet_number = quic_packet->packet_number();
+  }
+
   return quic_packet;
 }
 

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