You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by sc...@apache.org on 2019/02/14 08:29:14 UTC

[trafficserver] branch quic-latest updated (1a160b4 -> 3eac14f)

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

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


    from 1a160b4  Make QUICNetVC::largest_acked_packet_number() private
     new adcfe78  QUIC: Rename QUICPacket::retransmittable to ack_eliciting
     new 48a89c4  QUIC: Adds crypto flags
     new 9352e40  QUIC: LossDetector draft-17
     new 9979ff4  QUIC: Send Ping frame correctly
     new cdf771b  QUIC: Remove unneccessary log with unvverified path
     new fe61dc5  QUIC: Adds draft-17 congestion controller
     new 93b24bb  QUIC: process ecn section
     new 732c2b4  QUIC: Fixed Initial const vars
     new 3d3cde2  QUIC: uncomment the congestion controller config
     new 8fb23d6  QUIC: Fixed test cases
     new 3eac14f  QUIC: Adds log for lost packet and add comment to the changes with spec

The 12692 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/P_QUICNetVConnection.h                  |   6 +-
 iocore/net/QUICNetVConnection.cc                   |  45 +--
 iocore/net/quic/Mock.h                             |  30 +-
 iocore/net/quic/QUICConfig.cc                      |  83 ++---
 iocore/net/quic/QUICConfig.h                       |  38 +-
 iocore/net/quic/QUICCongestionController.cc        |  91 +++--
 iocore/net/quic/QUICLossDetector.cc                | 385 +++++++++------------
 iocore/net/quic/QUICLossDetector.h                 | 106 +++---
 iocore/net/quic/QUICPacket.cc                      |  59 ++--
 iocore/net/quic/QUICPacket.h                       |  26 +-
 iocore/net/quic/QUICPacketFactory.cc               |  12 +-
 iocore/net/quic/QUICPacketFactory.h                |  14 +-
 iocore/net/quic/QUICPinger.cc                      |  11 +
 iocore/net/quic/test/test_QUICLossDetector.cc      |  88 +++--
 iocore/net/quic/test/test_QUICPacket.cc            |   4 +-
 iocore/net/quic/test/test_QUICPacketFactory.cc     |   2 +-
 iocore/net/quic/test/test_QUICVersionNegotiator.cc |   8 +-
 mgmt/RecordsConfig.cc                              |  21 +-
 18 files changed, 524 insertions(+), 505 deletions(-)