summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/background/Transceiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/background/Transceiver.h')
-rw-r--r--cpp/test/Ice/background/Transceiver.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/cpp/test/Ice/background/Transceiver.h b/cpp/test/Ice/background/Transceiver.h
index b6e06d40510..770272557b2 100644
--- a/cpp/test/Ice/background/Transceiver.h
+++ b/cpp/test/Ice/background/Transceiver.h
@@ -21,7 +21,7 @@ public:
virtual void close();
virtual bool write(IceInternal::Buffer&);
- virtual bool read(IceInternal::Buffer&, bool&);
+ virtual bool read(IceInternal::Buffer&);
#ifdef ICE_USE_IOCP
virtual bool startWrite(IceInternal::Buffer&);
virtual void finishWrite(IceInternal::Buffer&);
@@ -31,7 +31,7 @@ public:
virtual std::string type() const;
virtual std::string toString() const;
virtual Ice::ConnectionInfoPtr getInfo() const;
- virtual IceInternal::SocketOperation initialize(IceInternal::Buffer&, IceInternal::Buffer&, bool&);
+ virtual IceInternal::SocketOperation initialize(IceInternal::Buffer&, IceInternal::Buffer&);
virtual void checkSendSize(const IceInternal::Buffer&, size_t);
private:
@@ -44,9 +44,6 @@ private:
const IceInternal::TransceiverPtr _transceiver;
const ConfigurationPtr _configuration;
bool _initialized;
-
- IceInternal::Buffer _readBuffer;
- IceInternal::Buffer::Container::const_iterator _readBufferPos;
};
#endif