diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 15:21:18 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 15:21:18 +0000 |
commit | 3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf (patch) | |
tree | 3f90cde49d025a2f6afb05cfe77f1f6f36bb9f66 /cpp/src/Ice/EndpointFactoryManager.cpp | |
parent | Updated properties. (diff) | |
download | ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.tar.bz2 ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.tar.xz ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.zip |
Bug 395 - Added pseudo INVADDR_ANY support
Diffstat (limited to 'cpp/src/Ice/EndpointFactoryManager.cpp')
-rw-r--r-- | cpp/src/Ice/EndpointFactoryManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/EndpointFactoryManager.cpp b/cpp/src/Ice/EndpointFactoryManager.cpp index 8536c6d0381..0c11e9170dc 100644 --- a/cpp/src/Ice/EndpointFactoryManager.cpp +++ b/cpp/src/Ice/EndpointFactoryManager.cpp @@ -64,7 +64,7 @@ IceInternal::EndpointFactoryManager::get(Short type) const } EndpointIPtr -IceInternal::EndpointFactoryManager::create(const string& str) const +IceInternal::EndpointFactoryManager::create(const string& str, bool adapterEndp) const { IceUtil::Mutex::Lock sync(*this); // TODO: Necessary? @@ -98,7 +98,7 @@ IceInternal::EndpointFactoryManager::create(const string& str) const { if(_factories[i]->protocol() == protocol) { - return _factories[i]->create(str.substr(end)); + return _factories[i]->create(str.substr(end), adapterEndp); } } |