summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Outgoing.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-03-10 20:50:32 +0000
committerMarc Laukien <marc@zeroc.com>2002-03-10 20:50:32 +0000
commit797a108bfab0f4acf8e07f22ef7e945eb44dd4fd (patch)
treebde138f7ec635ccff99b0e0a5586e1d5fad59692 /cpp/src/Ice/Outgoing.cpp
parentfixes (diff)
downloadice-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.cpp2
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)
{