diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-03-20 17:26:32 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-03-20 17:26:32 +0000 |
commit | ece547d12646753b06599064b3afd673bb46e1a7 (patch) | |
tree | 04baf10ddc3f715c979c7ec5ec76b8aa878f6be7 /cpp/src/Ice/ConnectionI.cpp | |
parent | Fixed bug 908 (diff) | |
download | ice-ece547d12646753b06599064b3afd673bb46e1a7.tar.bz2 ice-ece547d12646753b06599064b3afd673bb46e1a7.tar.xz ice-ece547d12646753b06599064b3afd673bb46e1a7.zip |
Added requestId to Current.
Diffstat (limited to 'cpp/src/Ice/ConnectionI.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp index 54ac3c0c1cb..de3d9872570 100644 --- a/cpp/src/Ice/ConnectionI.cpp +++ b/cpp/src/Ice/ConnectionI.cpp @@ -2204,7 +2204,7 @@ Ice::ConnectionI::invokeAll(BasicStream& stream, Int invokeNum, Int requestId, B // Prepare the invocation. // bool response = !_endpoint->datagram() && requestId != 0; - Incoming in(_instance.get(), this, adapter, response, compress); + Incoming in(_instance.get(), this, adapter, response, compress, requestId); BasicStream* is = in.is(); stream.swap(*is); BasicStream* os = in.os(); |