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

Unified Diff: net/tools/flip_server/spdy_interface.cc

Issue 9618002: SPDY - integration of spdy/3 code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 | « net/tools/flip_server/spdy_interface.h ('k') | net/websockets/websocket_job_spdy2_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/spdy_interface.cc
===================================================================
--- net/tools/flip_server/spdy_interface.cc (revision 126086)
+++ net/tools/flip_server/spdy_interface.cc (working copy)
@@ -319,10 +319,10 @@
// Send a settings frame
int SpdySM::PostAcceptHook() {
SpdySettings settings;
- SettingsFlagsAndId settings_id(SETTINGS_MAX_CONCURRENT_STREAMS);
+ SettingsFlagsAndId settings_id(0, SETTINGS_MAX_CONCURRENT_STREAMS);
settings.push_back(SpdySetting(settings_id, 100));
SpdySettingsControlFrame* settings_frame =
- SpdyFramer::CreateSettings(settings);
+ buffered_spdy_framer_->CreateSettings(settings);
VLOG(1) << ACCEPTOR_CLIENT_IDENT << "Sending Settings Frame";
EnqueueDataFrame(new SpdyFrameDataFrame(settings_frame));
« no previous file with comments | « net/tools/flip_server/spdy_interface.h ('k') | net/websockets/websocket_job_spdy2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698