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

Unified Diff: net/quic/quic_session.cc

Issue 989523005: Avoid duplicates in SPDY's write blocked list. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use hash_map. Created 5 years, 9 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 | net/quic/quic_write_blocked_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_session.cc
diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
index 993f4292d0635d75d43f73aaddc1f57b800f20ee..c8231a06f30483190b8d9109abe3970ff401e4ff 100644
--- a/net/quic/quic_session.cc
+++ b/net/quic/quic_session.cc
@@ -102,6 +102,7 @@ QuicSession::QuicSession(QuicConnection* connection, const QuicConfig& config)
config_(config),
max_open_streams_(config_.MaxStreamsPerConnection()),
next_stream_id_(is_server() ? 2 : 5),
+ write_blocked_streams_(true),
Ryan Hamilton 2015/03/09 17:46:04 Should this be true or false? seems like false wou
largest_peer_created_stream_id_(0),
error_(QUIC_NO_ERROR),
flow_controller_(new QuicFlowController(
« no previous file with comments | « no previous file | net/quic/quic_write_blocked_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698