diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-09-09 09:11:57 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-09-09 09:11:57 +0000 |
commit | c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0 (patch) | |
tree | b362f5386068eace6a61031dd175ad066a645cd3 /cpp/src/Ice/ReferenceFactory.cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=335 (diff) | |
download | ice-c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0.tar.bz2 ice-c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0.tar.xz ice-c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0.zip |
Added new proxy methods: ice_getEndpoints(), ice_getAdapterId(),
ice_newEndpoints(), ice_newAdapterId().
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index 8af9ceab456..86ed65d8bf5 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -53,7 +53,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, const string& facet, Reference::Mode mode, bool secure, - const vector<EndpointPtr>& endpoints, + const vector<EndpointIPtr>& endpoints, const RouterInfoPtr& routerInfo, bool collocationOptimization) { @@ -411,7 +411,7 @@ IceInternal::ReferenceFactory::create(const string& str) return create(ident, Context(), facet, mode, secure, "", routerInfo, locatorInfo, true); } - vector<EndpointPtr> endpoints; + vector<EndpointIPtr> endpoints; switch(s[beg]) { @@ -431,7 +431,7 @@ IceInternal::ReferenceFactory::create(const string& str) } string es = s.substr(beg, end - beg); - EndpointPtr endp = _instance->endpointFactoryManager()->create(es); + EndpointIPtr endp = _instance->endpointFactoryManager()->create(es); if(endp != 0) { endpoints.push_back(endp); @@ -550,7 +550,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s) bool secure; s->read(secure); - vector<EndpointPtr> endpoints; + vector<EndpointIPtr> endpoints; string adapterId; RouterInfoPtr routerInfo = _instance->routerManager()->get(getDefaultRouter()); @@ -564,7 +564,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s) endpoints.reserve(sz); while(sz--) { - EndpointPtr endpoint = _instance->endpointFactoryManager()->read(s); + EndpointIPtr endpoint = _instance->endpointFactoryManager()->read(s); endpoints.push_back(endpoint); } return create(ident, Context(), facet, mode, secure, endpoints, routerInfo, true); |