diff options
author | Michi Henning <michi@zeroc.com> | 2003-07-18 05:38:56 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-07-18 05:38:56 +0000 |
commit | 9a7252044516af5435ca202657dd7465056b74a8 (patch) | |
tree | 78ab9df8f1682fd8c22e389d8825c6dacb440eeb /cpp/src/Ice/TcpTransceiver.h | |
parent | Snap-shot check-in. (diff) | |
download | ice-9a7252044516af5435ca202657dd7465056b74a8.tar.bz2 ice-9a7252044516af5435ca202657dd7465056b74a8.tar.xz ice-9a7252044516af5435ca202657dd7465056b74a8.zip |
Merging changes for DatagramLimitException
Diffstat (limited to 'cpp/src/Ice/TcpTransceiver.h')
-rw-r--r-- | cpp/src/Ice/TcpTransceiver.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/Ice/TcpTransceiver.h b/cpp/src/Ice/TcpTransceiver.h index 3b4e22e934d..fb6e488283a 100644 --- a/cpp/src/Ice/TcpTransceiver.h +++ b/cpp/src/Ice/TcpTransceiver.h @@ -37,6 +37,8 @@ public: virtual void write(Buffer&, int); virtual void read(Buffer&, int); virtual std::string toString() const; + virtual int maxRecvSize() const; + virtual int maxSendSize() const; private: @@ -54,6 +56,7 @@ private: SOCKET _fd; fd_set _rFdSet; fd_set _wFdSet; + int _maxSize; }; } |