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/09/06 05:52:25 UTC

[trafficserver] branch quic-latest updated (5b04932 -> e8565bb)

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 5b04932  Merge branch 'master' into quic-latest
     add e8565bb  QUIC: Adds QUICContext to wrap some common params

No new revisions were added by this update.

Summary of changes:
 iocore/net/P_QUICNetVConnection.h                |   3 +
 iocore/net/QUICNetVConnection.cc                 |  86 +-------
 iocore/net/quic/Makefile.am                      |   3 +-
 iocore/net/quic/Mock.h                           | 258 +++++++++++++++--------
 iocore/net/quic/QUICCongestionController.cc      |  73 +++----
 iocore/net/quic/QUICCongestionController.h       |  53 +++++
 iocore/net/quic/QUICConnection.h                 |   1 +
 iocore/net/quic/QUICContext.cc                   | 146 +++++++++++++
 iocore/net/quic/QUICContext.h                    |  83 ++++++++
 iocore/net/quic/QUICLossDetector.cc              |  27 +--
 iocore/net/quic/QUICLossDetector.h               |  62 ++----
 iocore/net/quic/QUICPacketProtectionKeyInfo.h    |   2 +
 iocore/net/quic/QUICTypes.h                      |   2 +
 iocore/net/quic/test/test_QUICFrameDispatcher.cc |   8 +-
 iocore/net/quic/test/test_QUICLossDetector.cc    |  19 +-
 15 files changed, 547 insertions(+), 279 deletions(-)
 create mode 100644 iocore/net/quic/QUICCongestionController.h
 create mode 100644 iocore/net/quic/QUICContext.cc
 create mode 100644 iocore/net/quic/QUICContext.h