summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/TcpTransceiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/TcpTransceiver.h')
-rw-r--r--cpp/src/Ice/TcpTransceiver.h26
1 files changed, 2 insertions, 24 deletions
diff --git a/cpp/src/Ice/TcpTransceiver.h b/cpp/src/Ice/TcpTransceiver.h
index dccc2283f6a..a1ce7a29a84 100644
--- a/cpp/src/Ice/TcpTransceiver.h
+++ b/cpp/src/Ice/TcpTransceiver.h
@@ -15,7 +15,6 @@
#include <Ice/LoggerF.h>
#include <Ice/StatsF.h>
#include <Ice/Transceiver.h>
-#include <Ice/TransportInfoI.h>
namespace IceInternal
{
@@ -32,7 +31,8 @@ public:
virtual void shutdown();
virtual void write(Buffer&, int);
virtual void read(Buffer&, int);
- virtual Ice::TransportInfoPtr info() const;
+ virtual std::string type() const;
+ virtual std::string toString() const;
private:
@@ -44,7 +44,6 @@ private:
const TraceLevelsPtr _traceLevels;
const Ice::LoggerPtr _logger;
const Ice::StatsPtr _stats;
- const Ice::TransportInfoPtr _info;
SOCKET _fd;
fd_set _rFdSet;
@@ -53,25 +52,4 @@ private:
}
-namespace Ice
-{
-
-class TcpTransportInfoI : public TransportInfoI
-{
-public:
-
- virtual std::string type() const;
- virtual std::string toString() const;
-
-private:
-
- TcpTransportInfoI(SOCKET);
- friend class IceInternal::TcpTransceiver;
-
- static const std::string _type;
- const std::string _desc;
-};
-
-}
-
#endif