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/01/23 03:06:04 UTC

[trafficserver] branch quic-latest updated: Add a log for binidng client generated CID and server generated CID

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


The following commit(s) were added to refs/heads/quic-latest by this push:
     new 4f55b16  Add a log for binidng client generated CID and server generated CID
4f55b16 is described below

commit 4f55b160ae66f6ecb7fe34b9b6c060fc4ccb3c5b
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Tue Jan 23 14:04:23 2018 +1100

    Add a log for binidng client generated CID and server generated CID
---
 iocore/net/QUICNetVConnection.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/iocore/net/QUICNetVConnection.cc b/iocore/net/QUICNetVConnection.cc
index e30c324..57e4f06 100644
--- a/iocore/net/QUICNetVConnection.cc
+++ b/iocore/net/QUICNetVConnection.cc
@@ -69,6 +69,8 @@ QUICNetVConnection::init(QUICConnectionId original_cid, UDPConnection *udp_con,
   this->_packet_handler              = packet_handler;
   this->_original_quic_connection_id = original_cid;
   this->_quic_connection_id.randomize();
+  QUICConDebug("Connection ID %" PRIx64 " has been changed to %" PRIx64, static_cast<uint64_t>(this->_original_quic_connection_id),
+               static_cast<uint64_t>(this->_quic_connection_id));
 }
 
 VIO *

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