diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-03-06 10:13:42 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-03-06 10:13:42 +0100 |
commit | c6dbd090d9691cc0116a2967b2827b858b184dfe (patch) | |
tree | 6d2ad80c98665c9090b16f97c400ab4b33c7ab73 /cpp/src/Ice/TcpTransceiver.h | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.tar.bz2 ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.tar.xz ice-c6dbd090d9691cc0116a2967b2827b858b184dfe.zip |
Removed thread-per-connection and added serialize mode
Diffstat (limited to 'cpp/src/Ice/TcpTransceiver.h')
-rw-r--r-- | cpp/src/Ice/TcpTransceiver.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/cpp/src/Ice/TcpTransceiver.h b/cpp/src/Ice/TcpTransceiver.h index 07d1692fb9d..2f10a0c1fd6 100644 --- a/cpp/src/Ice/TcpTransceiver.h +++ b/cpp/src/Ice/TcpTransceiver.h @@ -35,13 +35,11 @@ public: virtual SOCKET fd(); virtual void close(); - virtual void shutdownWrite(); - virtual void shutdownReadWrite(); - virtual bool write(Buffer&, int); - virtual bool read(Buffer&, int); + virtual bool write(Buffer&); + virtual bool read(Buffer&); virtual std::string type() const; virtual std::string toString() const; - virtual SocketStatus initialize(int); + virtual SocketStatus initialize(); virtual void checkSendSize(const Buffer&, size_t); private: |