diff options
author | Michi Henning <michi@zeroc.com> | 2007-05-08 04:56:42 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-05-08 04:56:42 +0000 |
commit | 1d0b44a5884009c3565a8a8169e44918fae30f6e (patch) | |
tree | 5eceb36c9b0a0cd11cf8c368dceef18135413ad2 /cpp/src/Ice/EndpointFactoryManager.cpp | |
parent | Opaque changes are backward compatible. (diff) | |
download | ice-1d0b44a5884009c3565a8a8169e44918fae30f6e.tar.bz2 ice-1d0b44a5884009c3565a8a8169e44918fae30f6e.tar.xz ice-1d0b44a5884009c3565a8a8169e44918fae30f6e.zip |
Returning opaque endpoint in endpoints list, so the opaque endpoint isn't
lost when re-sent, and to avoid throwing EndpointParseException if a
stringified proxy contains only opaque endpoints, none of which are
known to the unstringifier.
Diffstat (limited to 'cpp/src/Ice/EndpointFactoryManager.cpp')
-rw-r--r-- | cpp/src/Ice/EndpointFactoryManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/Ice/EndpointFactoryManager.cpp b/cpp/src/Ice/EndpointFactoryManager.cpp index f0a4dbb35dc..9b97258d958 100644 --- a/cpp/src/Ice/EndpointFactoryManager.cpp +++ b/cpp/src/Ice/EndpointFactoryManager.cpp @@ -141,6 +141,7 @@ IceInternal::EndpointFactoryManager::create(const string& str) const return _factories[i]->read(&bs); } } + return ue; // Endpoint is opaque, but we don't have a factory for its type. } return 0; |