diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-16 15:01:08 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-16 15:01:08 -0230 |
commit | 667cf6024bbf1950da2eecffe65f00dc2169a9d6 (patch) | |
tree | a6efa0a355f8a2b1fa8f8b15fdf1d26ed91959f1 /cpp/src/Ice/TcpAcceptor.h | |
parent | Changed Glacier2 to enable ACM for client connections, bug 3244 and 4298 (diff) | |
download | ice-667cf6024bbf1950da2eecffe65f00dc2169a9d6.tar.bz2 ice-667cf6024bbf1950da2eecffe65f00dc2169a9d6.tar.xz ice-667cf6024bbf1950da2eecffe65f00dc2169a9d6.zip |
Added Ruby implemetation of EndpointInfo and ConnectionInfo
Diffstat (limited to 'cpp/src/Ice/TcpAcceptor.h')
-rw-r--r-- | cpp/src/Ice/TcpAcceptor.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Ice/TcpAcceptor.h b/cpp/src/Ice/TcpAcceptor.h index b4067c9a711..64406b330be 100644 --- a/cpp/src/Ice/TcpAcceptor.h +++ b/cpp/src/Ice/TcpAcceptor.h @@ -23,6 +23,8 @@ namespace IceInternal { +class TcpEndpoint; + class TcpAcceptor : public Acceptor, public NativeInfo { public: @@ -45,12 +47,11 @@ public: private: - TcpAcceptor(const InstancePtr&, const Ice::TcpEndpointInfoPtr&); + TcpAcceptor(const InstancePtr&, const std::string&, int); virtual ~TcpAcceptor(); friend class TcpEndpointI; const InstancePtr _instance; - const Ice::TcpEndpointInfoPtr _endpointInfo; const TraceLevelsPtr _traceLevels; const ::Ice::LoggerPtr _logger; const struct sockaddr_storage _addr; |