summaryrefslogtreecommitdiffstats
path: root/net/socket/tcp_client_socket_libevent.h
diff options
context:
space:
mode:
authormbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-09 22:38:04 +0000
committermbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-09 22:38:04 +0000
commitd3f665783018ad6832b224d108640a0be2b1f248 (patch)
tree6634df109ace1c2df58fccf8ff4d9569ec3a5cd9 /net/socket/tcp_client_socket_libevent.h
parent87fce2b91c8fa1f10ec49e79c719159097a597c5 (diff)
downloadchromium_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/tcp_client_socket_libevent.h')
-rw-r--r--net/socket/tcp_client_socket_libevent.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/socket/tcp_client_socket_libevent.h b/net/socket/tcp_client_socket_libevent.h
index c644a5f..bfb5767 100644
--- a/net/socket/tcp_client_socket_libevent.h
+++ b/net/socket/tcp_client_socket_libevent.h
@@ -40,6 +40,8 @@ class TCPClientSocketLibevent : public ClientSocket {
// Full duplex mode (reading and writing at the same time) is supported
virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
+ virtual bool SetReceiveBufferSize(int32 size);
+ virtual bool SetSendBufferSize(int32 size);
private:
class ReadWatcher : public MessageLoopForIO::Watcher {