From 414f520f8b730c8437ed9c42628f07824a7e9dd1 Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Tue, 29 Apr 2008 20:15:18 +0000 Subject: QPID-974: allow the size of the queue of outgoing frames to be restricted QPID-544: tidy up configuration (ensuring desired settings are used correctly, allowing tcp socket options to be set etc) git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@652083 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/tests/SimpleTestCaseBase.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'qpid/cpp/src/tests/SimpleTestCaseBase.cpp') diff --git a/qpid/cpp/src/tests/SimpleTestCaseBase.cpp b/qpid/cpp/src/tests/SimpleTestCaseBase.cpp index 4f071cd02b..0111e030fb 100644 --- a/qpid/cpp/src/tests/SimpleTestCaseBase.cpp +++ b/qpid/cpp/src/tests/SimpleTestCaseBase.cpp @@ -47,7 +47,7 @@ void SimpleTestCaseBase::report(client::Message& report) } } -SimpleTestCaseBase::Sender::Sender(TestOptions& options, +SimpleTestCaseBase::Sender::Sender(ConnectionSettings& options, const Exchange& _exchange, const std::string& _key, const int _messages) @@ -67,8 +67,8 @@ void SimpleTestCaseBase::Sender::start(){ stop(); } -SimpleTestCaseBase::Worker::Worker(TestOptions& options, const int _messages) : - connection(options.trace), messages(_messages), count(0) +SimpleTestCaseBase::Worker::Worker(ConnectionSettings& options, const int _messages) : + messages(_messages), count(0) { connection.open(options.host, options.port); connection.openChannel(channel); -- cgit v1.2.1