Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Unified Diff: net/quic/core/quic_stream.cc

Issue 2964583002: Landing Recent QUIC changes until Jun 27 19:50:48 2017 +0000 (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/core/quic_spdy_session.cc ('k') | net/quic/core/spdy_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_stream.cc
diff --git a/net/quic/core/quic_stream.cc b/net/quic/core/quic_stream.cc
index 2aa2ac93e271bc089ea21ddeb909b9bf55df8adb..4e8d7a65835736b7d700319e634732dc099e6aab 100644
--- a/net/quic/core/quic_stream.cc
+++ b/net/quic/core/quic_stream.cc
@@ -82,10 +82,14 @@ QuicStream::QuicStream(QuicStreamId id, QuicSession* session)
}
QuicStream::~QuicStream() {
- QUIC_DLOG_IF(WARNING, session_ != nullptr &&
- session_->use_stream_notifier() &&
- IsWaitingForAcks())
- << "Stream destroyed while waiting for acks.";
+ if (session_ != nullptr && session_->use_stream_notifier() &&
+ IsWaitingForAcks()) {
+ QUIC_DVLOG(1)
+ << ENDPOINT << "Stream " << id_
+ << " gets destroyed while waiting for acks. stream_bytes_outstanding = "
+ << stream_bytes_outstanding_
+ << ", fin_outstanding: " << fin_outstanding_;
+ }
}
void QuicStream::SetFromConfig() {}
« no previous file with comments | « net/quic/core/quic_spdy_session.cc ('k') | net/quic/core/spdy_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698