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

Unified Diff: net/quic/quic_connection.cc

Issue 180793002: BLOCKED frames not being cleared. These are not yet used. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_connection.cc
diff --git a/net/quic/quic_connection.cc b/net/quic/quic_connection.cc
index c5035985ea0501be28eb7e7703e81536a82857f2..1446e855dce34659d57fac9bf02041fdbe5183ff 100644
--- a/net/quic/quic_connection.cc
+++ b/net/quic/quic_connection.cc
@@ -261,6 +261,7 @@ void QuicConnection::OnPacket() {
DCHECK(last_stream_frames_.empty() &&
last_goaway_frames_.empty() &&
last_window_update_frames_.empty() &&
+ last_blocked_frames_.empty() &&
last_rst_frames_.empty() &&
last_ack_frames_.empty() &&
last_congestion_frames_.empty() &&
@@ -722,7 +723,6 @@ void QuicConnection::OnPacketComplete() {
<< last_stop_waiting_frames_.size() << " stop_waiting, "
<< last_goaway_frames_.size() << " goaways, "
<< last_window_update_frames_.size() << " window updates, "
- << last_rst_frames_.size() << " rsts, "
<< last_blocked_frames_.size() << " blocked, "
<< last_rst_frames_.size() << " rsts, "
<< last_close_frames_.size() << " closes, "
@@ -813,6 +813,7 @@ void QuicConnection::ClearLastFrames() {
last_stream_frames_.clear();
last_goaway_frames_.clear();
last_window_update_frames_.clear();
+ last_blocked_frames_.clear();
last_rst_frames_.clear();
last_ack_frames_.clear();
last_stop_waiting_frames_.clear();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698