diff options
author | Jose <jose@zeroc.com> | 2009-07-15 22:20:47 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-07-15 22:20:47 +0200 |
commit | 4293e7261847b861b89a69f54606719538f66b11 (patch) | |
tree | 7edfe18ab1d65b2262feb0070bb423f594284456 /cpp/src/Ice/Reference.cpp | |
parent | 4019 - Minimal demo still not minimimal (diff) | |
download | ice-4293e7261847b861b89a69f54606719538f66b11.tar.bz2 ice-4293e7261847b861b89a69f54606719538f66b11.tar.xz ice-4293e7261847b861b89a69f54606719538f66b11.zip |
Add ice_getConnectionId to Proxy api.
commit 96047f7c59f38bcdf8b920d2acad61be96db7101
Author: Jose Gutierrez <pepone@dhcppc0.(none)>
Date: Wed Jul 15 22:16:38 2009 +0200
Add ice_getConnectionId to Proxy api.
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r-- | cpp/src/Ice/Reference.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index e78f845584c..597029af9aa 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -531,6 +531,12 @@ IceInternal::FixedReference::getLocatorCacheTimeout() const return 0; } +string +IceInternal::FixedReference::getConnectionId() const +{ + return string(); +} + ReferencePtr IceInternal::FixedReference::changeEndpoints(const vector<EndpointIPtr>& newEndpoints) const { @@ -858,6 +864,12 @@ IceInternal::RoutableReference::getLocatorCacheTimeout() const return _locatorCacheTimeout; } +string +IceInternal::RoutableReference::getConnectionId() const +{ + return _connectionId; +} + ReferencePtr IceInternal::RoutableReference::changeCompress(bool newCompress) const { |