diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-02-01 13:11:54 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-02-01 13:11:54 +0100 |
commit | 1005c525cf00a6e4b2ec7db24a75e6a15582bd21 (patch) | |
tree | f3b67c1e15c846363797f79a9fa0107dc20e92e2 /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Fixed syntax error (diff) | |
download | ice-1005c525cf00a6e4b2ec7db24a75e6a15582bd21.tar.bz2 ice-1005c525cf00a6e4b2ec7db24a75e6a15582bd21.tar.xz ice-1005c525cf00a6e4b2ec7db24a75e6a15582bd21.zip |
Changed ice_fixed to inherit invocation timeout, context and compress override from original proxy
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index 3014387b52c..c46bdca2332 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -91,8 +91,12 @@ IceInternal::ReferenceFactory::create(const Identity& ident, const Ice::Connecti "", // Facet connection->endpoint()->datagram() ? Reference::ModeDatagram : Reference::ModeTwoway, connection->endpoint()->secure(), + Ice::Protocol_1_0, _instance->defaultsAndOverrides()->defaultEncoding, - connection); + connection, + -1, + Ice::Context(), + IceUtil::Optional<bool>()); } ReferencePtr |