diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-07 17:01:30 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-07 17:01:30 +0000 |
commit | a737fcdae3a825d1a3df353a08df3c12285cde43 (patch) | |
tree | ce5c2f7aed6194cb4d94cb07e00b7380bc320e7b /cpp/src/Ice/ConnectionFactory.h | |
parent | Added missing IComparable (diff) | |
download | ice-a737fcdae3a825d1a3df353a08df3c12285cde43.tar.bz2 ice-a737fcdae3a825d1a3df353a08df3c12285cde43.tar.xz ice-a737fcdae3a825d1a3df353a08df3c12285cde43.zip |
More changes for bug 1996
Diffstat (limited to 'cpp/src/Ice/ConnectionFactory.h')
-rw-r--r-- | cpp/src/Ice/ConnectionFactory.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Ice/ConnectionFactory.h b/cpp/src/Ice/ConnectionFactory.h index 0f517008f09..358f2b92487 100644 --- a/cpp/src/Ice/ConnectionFactory.h +++ b/cpp/src/Ice/ConnectionFactory.h @@ -19,6 +19,7 @@ #include <Ice/ObjectAdapterF.h> #include <Ice/EndpointIF.h> #include <Ice/Endpoint.h> +#include <Ice/ConnectorF.h> #include <Ice/AcceptorF.h> #include <Ice/TransceiverF.h> #include <Ice/RouterInfoF.h> @@ -58,8 +59,8 @@ private: const InstancePtr _instance; bool _destroyed; - std::multimap<EndpointIPtr, Ice::ConnectionIPtr> _connections; - std::set<EndpointIPtr> _pending; // Endpoints for which connection establishment is pending. + std::multimap<ConnectorPtr, Ice::ConnectionIPtr> _connections; + std::set<ConnectorPtr> _pending; // Connectors for which connection establishment is pending. }; class IncomingConnectionFactory : public EventHandler, public IceUtil::Monitor<IceUtil::Mutex> |