diff options
author | Marc Laukien <marc@zeroc.com> | 2003-01-30 16:17:35 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-01-30 16:17:35 +0000 |
commit | ee691ff3fa0882ffa02117b5156f76e5af2ea9be (patch) | |
tree | 5aa661cbb4a0d521512e15631dec2b066719f01c /cpp/src/Ice/OutgoingAsync.cpp | |
parent | disable SSLv2 (diff) | |
download | ice-ee691ff3fa0882ffa02117b5156f76e5af2ea9be.tar.bz2 ice-ee691ff3fa0882ffa02117b5156f76e5af2ea9be.tar.xz ice-ee691ff3fa0882ffa02117b5156f76e5af2ea9be.zip |
compression cleanup
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index 601770612d1..e52b2ded9f0 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -48,7 +48,6 @@ IceInternal::OutgoingAsync::__setup(const ConnectionPtr& connection, const Refer const string& operation, OperationMode mode, const Context& context) { _connection = connection; - _compress = ref->compress; _instance = ref->instance; delete _is; delete _os; @@ -80,7 +79,7 @@ IceInternal::OutgoingAsync::__setup(const ConnectionPtr& connection, const Refer void IceInternal::OutgoingAsync::__invoke() { - _connection->sendAsyncRequest(this, _compress); + _connection->sendAsyncRequest(this); if(_connection->timeout() >= 0) { _absoluteTimeout = IceUtil::Time::now() + IceUtil::Time::milliSeconds(_connection->timeout()); |