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 2019/02/27 02:34:58 UTC

[trafficserver] branch quic-latest updated (e6a9def -> 10ebad1)

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 e6a9def  Don't send multiple PATH_CHALLENGE on the same packet
     new fba23d9  Introduce QUICPacketProtectionKeyInfo
     new d030ade  Remove set_hs_protocol from QUICPacketHeaderProtector
     new 1487168  Remove set_hs_protocol from QUICPacketFactory
     new 3968cf7  Remove QUICPacketProtection
     new 5b5a16f  Remove KeyingMaterial
     new d741a0d  Remove unused code
     new dac64b3  Make tests buildable
     new 2c6156c  Update tests
     new 28617fe  Revert unnecessary changes
     new 10ebad1  Small cleanups

The 12719 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                  |   4 +-
 iocore/net/QUICNetVConnection.cc                   |   8 +-
 iocore/net/quic/Makefile.am                        |   6 +-
 iocore/net/quic/Mock.h                             |  69 ++--
 iocore/net/quic/QUICHandshakeProtocol.cc           |  44 ---
 iocore/net/quic/QUICHandshakeProtocol.h            |  33 +-
 iocore/net/quic/QUICKeyGenerator.cc                |  32 +-
 iocore/net/quic/QUICKeyGenerator.h                 |  20 +-
 iocore/net/quic/QUICPacketFactory.cc               |  44 ++-
 iocore/net/quic/QUICPacketFactory.h                |  16 +-
 iocore/net/quic/QUICPacketHeaderProtector.cc       |  23 +-
 iocore/net/quic/QUICPacketHeaderProtector.h        |  13 +-
 iocore/net/quic/QUICPacketPayloadProtector.cc      | 100 ++++++
 iocore/net/quic/QUICPacketPayloadProtector.h       |  52 +++
 .../net/quic/QUICPacketPayloadProtector_openssl.cc | 132 +++++++
 iocore/net/quic/QUICPacketProtectionKeyInfo.cc     | 348 ++++++++++++++++++
 iocore/net/quic/QUICPacketProtectionKeyInfo.h      | 123 +++++++
 iocore/net/quic/QUICTLS.cc                         | 187 +++-------
 iocore/net/quic/QUICTLS.h                          |  31 +-
 iocore/net/quic/QUICTLS_boringssl.cc               |   3 -
 iocore/net/quic/QUICTLS_openssl.cc                 | 396 ++++++++++-----------
 iocore/net/quic/test/test_QUICHandshakeProtocol.cc |  41 ++-
 iocore/net/quic/test/test_QUICKeyGenerator.cc      |  41 ++-
 iocore/net/quic/test/test_QUICLossDetector.cc      |   5 +-
 iocore/net/quic/test/test_QUICPacketFactory.cc     |  22 +-
 .../quic/test/test_QUICPacketHeaderProtector.cc    |  27 +-
 iocore/net/quic/test/test_QUICVersionNegotiator.cc |  23 +-
 27 files changed, 1206 insertions(+), 637 deletions(-)
 delete mode 100644 iocore/net/quic/QUICHandshakeProtocol.cc
 create mode 100644 iocore/net/quic/QUICPacketPayloadProtector.cc
 create mode 100644 iocore/net/quic/QUICPacketPayloadProtector.h
 create mode 100644 iocore/net/quic/QUICPacketPayloadProtector_openssl.cc
 create mode 100644 iocore/net/quic/QUICPacketProtectionKeyInfo.cc
 create mode 100644 iocore/net/quic/QUICPacketProtectionKeyInfo.h