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/Transceiver.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/Transceiver.h')
-rw-r--r-- | cpp/src/Ice/Transceiver.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/Ice/Transceiver.h b/cpp/src/Ice/Transceiver.h index b5cd431fdae..d9ea8415a27 100644 --- a/cpp/src/Ice/Transceiver.h +++ b/cpp/src/Ice/Transceiver.h @@ -39,6 +39,8 @@ public: virtual void write(Buffer&, int) = 0; virtual void read(Buffer&, int) = 0; virtual std::string toString() const = 0; + virtual int maxRecvSize() const = 0; + virtual int maxSendSize() const = 0; }; } |