diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-01-21 13:20:59 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-01-21 13:20:59 +0100 |
commit | 52bd621c7d3fa7b144d8fad7941ac8d43e942be8 (patch) | |
tree | bdd7565282d503251d82205ce7fe3e57102a96d2 /cpp/src/Ice/LocatorInfo.h | |
parent | async I/O in C# (diff) | |
download | ice-52bd621c7d3fa7b144d8fad7941ac8d43e942be8.tar.bz2 ice-52bd621c7d3fa7b144d8fad7941ac8d43e942be8.tar.xz ice-52bd621c7d3fa7b144d8fad7941ac8d43e942be8.zip |
- Removed OA createReverseProxy method.
- Fixed bug 2141, 2645, 2632, 1547.
- It's now possible to call ice_secure on a fixed proxy to require a secure connetion.
Diffstat (limited to 'cpp/src/Ice/LocatorInfo.h')
-rw-r--r-- | cpp/src/Ice/LocatorInfo.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cpp/src/Ice/LocatorInfo.h b/cpp/src/Ice/LocatorInfo.h index 0fd92725c6b..90263910dc3 100644 --- a/cpp/src/Ice/LocatorInfo.h +++ b/cpp/src/Ice/LocatorInfo.h @@ -91,23 +91,23 @@ public: Ice::LocatorPrx getLocator() const; Ice::LocatorRegistryPrx getLocatorRegistry(); - std::vector<EndpointIPtr> getEndpoints(const IndirectReferencePtr&, int, bool&); - void getEndpoints(const IndirectReferencePtr&, int, const GetEndpointsCallbackPtr&); - void clearCache(const IndirectReferencePtr&); - void clearObjectCache(const IndirectReferencePtr&); + std::vector<EndpointIPtr> getEndpoints(const ReferencePtr&, int, bool&); + void getEndpoints(const ReferencePtr&, int, const GetEndpointsCallbackPtr&); + void clearCache(const ReferencePtr&); + void clearObjectCache(const ReferencePtr&); // // The following methods need to be public for access by AMI callbacks. // - void getEndpointsException(const IndirectReferencePtr&, const Ice::Exception&); - void getWellKnownObjectEndpoints(const IndirectReferencePtr&, const Ice::ObjectPrx&, int, bool, + void getEndpointsException(const ReferencePtr&, const Ice::Exception&); + void getWellKnownObjectEndpoints(const ReferencePtr&, const Ice::ObjectPrx&, int, bool, const GetEndpointsCallbackPtr&); - void getEndpointsException(const IndirectReferencePtr&, const Ice::Exception&, const GetEndpointsCallbackPtr&); - void getEndpointsTrace(const IndirectReferencePtr&, const std::vector<EndpointIPtr>&, bool); + void getEndpointsException(const ReferencePtr&, const Ice::Exception&, const GetEndpointsCallbackPtr&); + void getEndpointsTrace(const ReferencePtr&, const std::vector<EndpointIPtr>&, bool); private: - void trace(const std::string&, const IndirectReferencePtr&, const std::vector<EndpointIPtr>&); + void trace(const std::string&, const ReferencePtr&, const std::vector<EndpointIPtr>&); const Ice::LocatorPrx _locator; Ice::LocatorRegistryPrx _locatorRegistry; |