diff options
author | Gordon Sim <gsim@apache.org> | 2008-04-29 20:15:18 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-04-29 20:15:18 +0000 |
commit | acc0dee435e1fa22e3b1e7cdfecf6913bf88988e (patch) | |
tree | 729f7a03543acf23380e68897f8788a3e6b45e2e /cpp/src/tests/SimpleTestCaseBase.cpp | |
parent | a19ce3b1863f80c1232ec2690cd920325a39d71a (diff) | |
download | qpid-python-acc0dee435e1fa22e3b1e7cdfecf6913bf88988e.tar.gz |
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/qpid@652083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/SimpleTestCaseBase.cpp')
-rw-r--r-- | cpp/src/tests/SimpleTestCaseBase.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/tests/SimpleTestCaseBase.cpp b/cpp/src/tests/SimpleTestCaseBase.cpp index 4f071cd02b..0111e030fb 100644 --- a/cpp/src/tests/SimpleTestCaseBase.cpp +++ b/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); |