diff options
author | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-09 22:38:04 +0000 |
---|---|---|
committer | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-09 22:38:04 +0000 |
commit | d3f665783018ad6832b224d108640a0be2b1f248 (patch) | |
tree | 6634df109ace1c2df58fccf8ff4d9569ec3a5cd9 /net/socket/socket.h | |
parent | 87fce2b91c8fa1f10ec49e79c719159097a597c5 (diff) | |
download | chromium_src-d3f665783018ad6832b224d108640a0be2b1f248.zip chromium_src-d3f665783018ad6832b224d108640a0be2b1f248.tar.gz chromium_src-d3f665783018ad6832b224d108640a0be2b1f248.tar.bz2 |
Add methods for setting socket buffers to the Socket
class.
Also add a few stats counters for TCP read/write stats.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/199048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25803 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/socket/socket.h')
-rw-r--r-- | net/socket/socket.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/net/socket/socket.h b/net/socket/socket.h index 8e451d2..a0834bf 100644 --- a/net/socket/socket.h +++ b/net/socket/socket.h @@ -37,6 +37,16 @@ class Socket { // buffer that is written to the socket. virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback) = 0; + + // Set the receive buffer size (in bytes) for the socket. + // Note: changing this value can effect the TCP window size on some platforms. + // Returns true on success, or false on failure. + virtual bool SetReceiveBufferSize(int32 size) = 0; + + // Set the send buffer size (in bytes) for the socket. + // Note: changing this value can effect the TCP window size on some platforms. + // Returns true on success, or false on failure. + virtual bool SetSendBufferSize(int32 size) = 0; }; } // namespace net |