diff options
author | Marc Laukien <marc@zeroc.com> | 2004-09-13 18:19:41 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-09-13 18:19:41 +0000 |
commit | e012bfcd0c32c6fd185890aedb5f17e69da8870e (patch) | |
tree | 28dd15cd1a91ee0a244078487ed0d7b799364504 /cpp/src/Ice/TcpTransceiver.h | |
parent | adding AMI tests (diff) | |
download | ice-e012bfcd0c32c6fd185890aedb5f17e69da8870e.tar.bz2 ice-e012bfcd0c32c6fd185890aedb5f17e69da8870e.tar.xz ice-e012bfcd0c32c6fd185890aedb5f17e69da8870e.zip |
Connection.ice
Diffstat (limited to 'cpp/src/Ice/TcpTransceiver.h')
-rw-r--r-- | cpp/src/Ice/TcpTransceiver.h | 26 |
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 |