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 2022/07/07 02:27:55 UTC

[trafficserver] 07/12: Change the debug tag for quiche

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

maskit pushed a commit to branch quiche
in repository https://gitbox.apache.org/repos/asf/trafficserver.git

commit 88031c6eb150b28bc1f330438ad1187ac2b50209
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Wed Jun 15 15:15:55 2022 +0900

    Change the debug tag for quiche
---
 iocore/net/QUICNetProcessor_quiche.cc | 2 +-
 proxy/http3/Http3Transaction.cc       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/iocore/net/QUICNetProcessor_quiche.cc b/iocore/net/QUICNetProcessor_quiche.cc
index 460658dec..72da3b259 100644
--- a/iocore/net/QUICNetProcessor_quiche.cc
+++ b/iocore/net/QUICNetProcessor_quiche.cc
@@ -45,7 +45,7 @@ QUICNetProcessor quic_NetProcessor;
 static void
 debug_log(const char *line, void *argp)
 {
-  Debug("quiche", "%s\n", line);
+  Debug("vv_quiche", "%s\n", line);
 }
 
 QUICNetProcessor::QUICNetProcessor() {}
diff --git a/proxy/http3/Http3Transaction.cc b/proxy/http3/Http3Transaction.cc
index 034c0c08a..6b4bc2db8 100644
--- a/proxy/http3/Http3Transaction.cc
+++ b/proxy/http3/Http3Transaction.cc
@@ -467,7 +467,7 @@ Http3Transaction::_process_read_vio()
 
   uint64_t nread = 0;
   this->_frame_dispatcher.on_read_ready(this->_info.adapter.stream().id(), *this->_info.read_vio->get_reader(), nread);
-  this->_info.read_vio.ndone += nread;
+  this->_info.read_vio->ndone += nread;
   return nread;
 }