diff options
author | Marc Laukien <marc@zeroc.com> | 2002-03-10 20:50:32 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-03-10 20:50:32 +0000 |
commit | 797a108bfab0f4acf8e07f22ef7e945eb44dd4fd (patch) | |
tree | bde138f7ec635ccff99b0e0a5586e1d5fad59692 /cpp/src/Ice/Outgoing.cpp | |
parent | fixes (diff) | |
download | ice-797a108bfab0f4acf8e07f22ef7e945eb44dd4fd.tar.bz2 ice-797a108bfab0f4acf8e07f22ef7e945eb44dd4fd.tar.xz ice-797a108bfab0f4acf8e07f22ef7e945eb44dd4fd.zip |
Ice protocol optimizations
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r-- | cpp/src/Ice/Outgoing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp index 647dab515dc..6daf8ae2c16 100644 --- a/cpp/src/Ice/Outgoing.cpp +++ b/cpp/src/Ice/Outgoing.cpp @@ -66,7 +66,7 @@ IceInternal::Outgoing::Outgoing(const ConnectionPtr& connection, const Reference _os.write(_reference->facet); _os.write(operation); _os.write(nonmutating); - _os.write(Int(context.size())); + _os.writeSize(Int(context.size())); Context::const_iterator p; for (p = context.begin(); p != context.end(); ++p) { |