diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-05-14 10:46:58 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-05-14 10:46:58 +0200 |
commit | baac62460df69a477c450b97735fd561350b4ccf (patch) | |
tree | 92ace9d048da2ff62a52819e6f01ead859a0032b /cpp/test/Ice/ami/TestI.cpp | |
parent | Also fixed property cloning for defaults properties (diff) | |
download | ice-baac62460df69a477c450b97735fd561350b4ccf.tar.bz2 ice-baac62460df69a477c450b97735fd561350b4ccf.tar.xz ice-baac62460df69a477c450b97735fd561350b4ccf.zip |
ICE-4750, Fixed connection assert
Diffstat (limited to 'cpp/test/Ice/ami/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/ami/TestI.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Ice/ami/TestI.cpp b/cpp/test/Ice/ami/TestI.cpp index 8ed3b7c9498..a4cc8a8ef1f 100644 --- a/cpp/test/Ice/ami/TestI.cpp +++ b/cpp/test/Ice/ami/TestI.cpp @@ -69,6 +69,12 @@ TestIntfI::waitForBatch(Ice::Int count, const Ice::Current&) } void +TestIntfI::close(bool force, const Ice::Current& current) +{ + current.con->close(force); +} + +void TestIntfI::shutdown(const Ice::Current& current) { current.adapter->getCommunicator()->shutdown(); |