diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-26 16:33:40 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-26 16:33:40 +0000 |
commit | 61d32dc28da403d4e3270db8831a776fd93cae3f (patch) | |
tree | 8aacb32918227fac126cb1fc2f40c59f061f69c8 /cppe/src/IceE/RouterInfo.cpp | |
parent | More changes for inconsistent proxy ice_* methods (diff) | |
download | ice-61d32dc28da403d4e3270db8831a776fd93cae3f.tar.bz2 ice-61d32dc28da403d4e3270db8831a776fd93cae3f.tar.xz ice-61d32dc28da403d4e3270db8831a776fd93cae3f.zip |
More changes for inconsistent ice_* proxy methods
Diffstat (limited to 'cppe/src/IceE/RouterInfo.cpp')
-rw-r--r-- | cppe/src/IceE/RouterInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/RouterInfo.cpp b/cppe/src/IceE/RouterInfo.cpp index 2d338d6909c..0a0f2c439e6 100644 --- a/cppe/src/IceE/RouterInfo.cpp +++ b/cppe/src/IceE/RouterInfo.cpp @@ -14,7 +14,7 @@ #include <IceE/RouterInfo.h> #include <IceE/Router.h> #include <IceE/LocalException.h> -#include <IceE/Connection.h> // For ice_connection()->timeout(). +#include <IceE/Connection.h> // For ice_getConnection()->timeout(). #include <IceE/Functional.h> using namespace std; @@ -179,7 +179,7 @@ IceInternal::RouterInfo::getClientProxy() // we must use the same timeout as the already existing // connection. // - _clientProxy = _clientProxy->ice_timeout(_router->ice_connection()->timeout()); + _clientProxy = _clientProxy->ice_timeout(_router->ice_getConnection()->timeout()); } return _clientProxy; @@ -196,7 +196,7 @@ IceInternal::RouterInfo::setClientProxy(const ObjectPrx& clientProxy) // In order to avoid creating a new connection to the router, we // must use the same timeout as the already existing connection. // - _clientProxy = _clientProxy->ice_timeout(_router->ice_connection()->timeout()); + _clientProxy = _clientProxy->ice_timeout(_router->ice_getConnection()->timeout()); } ObjectPrx |