Chromium Code Reviews

Unified Diff: net/spdy/spdy_session.cc

Issue 5588011: Don't tweak buffer size for SPDY (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« 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/spdy/spdy_session.cc
===================================================================
--- net/spdy/spdy_session.cc (revision 68605)
+++ net/spdy/spdy_session.cc (working copy)
@@ -62,17 +62,6 @@
const int kReadBufferSize = 8 * 1024;
-void AdjustSocketBufferSizes(ClientSocket* socket) {
- // Adjust socket buffer sizes.
- // SPDY uses one socket, and we want a really big buffer.
- // This greatly helps on links with packet loss - we can even
- // outperform Vista's dynamic window sizing algorithm.
- // TODO(mbelshe): more study.
- const int kSocketBufferSize = 512 * 1024;
- socket->SetReceiveBufferSize(kSocketBufferSize);
- socket->SetSendBufferSize(kSocketBufferSize);
-}
-
class NetLogSpdySessionParameter : public NetLog::EventParameters {
public:
NetLogSpdySessionParameter(const HostPortProxyPair& host_pair)
@@ -294,8 +283,6 @@
static base::StatsCounter spdy_sessions("spdy.sessions");
spdy_sessions.Increment();
- AdjustSocketBufferSizes(connection->socket());
-
state_ = CONNECTED;
connection_.reset(connection);
is_secure_ = is_secure;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine