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 2020/01/30 06:38:26 UTC

[trafficserver] branch quic-latest updated (7b82a93 -> 8e1dd61)

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 7b82a93  Fix an wrong assert and add a test for it
     add 137451f  Update QUIC draft version numbers to 25
     add 3e191ce  Support HANDSHAKE_DONE frame
     add 0ee4a7a  Update tests
     add df36ca7  Update idle_timeout to max_idle_timeout and follow the new behavior
     add b7c4f1c  Add CONNECTION_ID_LIMIT_ERROR and INVALID_TOKEN
     add 593be74  Use CONNECTION_ID_LIMIT_ERROR
     add bf08848  Send INVALID_TOKEN error
     add bc33fc3  Update RETRY packet
     add 8e1dd61  Count CIDs used on Initial and PreferredAddress as active CIDs

No new revisions were added by this update.

Summary of changes:
 iocore/net/P_QUICNetVConnection.h                  |  2 +-
 iocore/net/P_QUICPacketHandler.h                   |  2 +
 iocore/net/QUICNetVConnection.cc                   | 14 ++++
 iocore/net/QUICPacketHandler.cc                    | 54 ++++++++++++++--
 iocore/net/quic/Makefile.am                        |  1 +
 iocore/net/quic/Mock.h                             |  2 +-
 iocore/net/quic/QUICAltConnectionManager.cc        | 20 ++----
 iocore/net/quic/QUICDebugNames.cc                  | 10 ++-
 iocore/net/quic/QUICFrame.cc                       | 65 ++++++++++++++++++-
 iocore/net/quic/QUICFrame.h                        | 20 ++++++
 iocore/net/quic/QUICHandshake.cc                   | 53 ++++++++++++++--
 iocore/net/quic/QUICHandshake.h                    |  7 ++
 iocore/net/quic/QUICPacket.cc                      | 74 +++++++++-------------
 iocore/net/quic/QUICPacket.h                       | 13 ++--
 iocore/net/quic/QUICPacketFactory.cc               |  5 +-
 iocore/net/quic/QUICPacketFactory.h                |  3 +-
 iocore/net/quic/QUICTransportParameters.cc         |  3 +-
 iocore/net/quic/QUICTransportParameters.h          |  2 +-
 iocore/net/quic/QUICTypes.h                        |  9 ++-
 iocore/net/quic/test/test_QUICFrame.cc             | 39 +++++++++++-
 iocore/net/quic/test/test_QUICPacket.cc            | 45 ++++++-------
 iocore/net/quic/test/test_QUICPacketFactory.cc     |  6 +-
 .../net/quic/test/test_QUICTransportParameters.cc  |  6 +-
 src/traffic_quic/quic_client.cc                    |  4 +-
 src/tscore/ink_inet.cc                             |  4 +-
 25 files changed, 339 insertions(+), 124 deletions(-)