diff options
author | Mark Spruiell <mes@zeroc.com> | 2007-01-26 16:58:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2007-01-26 16:58:00 +0000 |
commit | 71f7fff702750e9b779f645d21075562e5c80a40 (patch) | |
tree | 0f059491911ecc5ea3f6c680b0ae05d0f67e7bfd /cpp/src/Ice/Reference.h | |
parent | Synced with other assemby files (diff) | |
download | ice-71f7fff702750e9b779f645d21075562e5c80a40.tar.bz2 ice-71f7fff702750e9b779f645d21075562e5c80a40.tar.xz ice-71f7fff702750e9b779f645d21075562e5c80a40.zip |
preserve proxy settings for CacheConnection, EndpointSelection,
ThreadPerConnection
Diffstat (limited to 'cpp/src/Ice/Reference.h')
-rw-r--r-- | cpp/src/Ice/Reference.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cpp/src/Ice/Reference.h b/cpp/src/Ice/Reference.h index ec0e14c2736..bd88dcc6826 100644 --- a/cpp/src/Ice/Reference.h +++ b/cpp/src/Ice/Reference.h @@ -238,7 +238,8 @@ public: protected: RoutableReference(const InstancePtr&, const Ice::CommunicatorPtr&, const Ice::Identity&, const SharedContextPtr&, - const std::string&, Mode, bool, bool, const RouterInfoPtr&, bool); + const std::string&, Mode, bool, bool, const RouterInfoPtr&, bool, bool, + Ice::EndpointSelectionType, bool); RoutableReference(const RoutableReference&); Ice::ConnectionIPtr createConnection(const std::vector<EndpointIPtr>&, bool&) const; @@ -266,7 +267,8 @@ class DirectReference : public RoutableReference public: DirectReference(const InstancePtr&, const Ice::CommunicatorPtr&, const Ice::Identity&, const SharedContextPtr&, - const std::string&, Mode, bool, bool, const std::vector<EndpointIPtr>&, const RouterInfoPtr&, bool); + const std::string&, Mode, bool, bool, const std::vector<EndpointIPtr>&, const RouterInfoPtr&, bool, + bool, Ice::EndpointSelectionType, bool); virtual Type getType() const; virtual int getLocatorCacheTimeout() const; @@ -306,7 +308,7 @@ public: IndirectReference(const InstancePtr&, const Ice::CommunicatorPtr&, const Ice::Identity&, const SharedContextPtr&, const std::string&, Mode, bool, bool, const std::string&, const RouterInfoPtr&, - const LocatorInfoPtr&, bool, int); + const LocatorInfoPtr&, bool, bool, Ice::EndpointSelectionType, bool, int); virtual LocatorInfoPtr getLocatorInfo() const { return _locatorInfo; } |