diff options
author | Gordon Sim <gsim@apache.org> | 2008-06-11 10:41:25 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-06-11 10:41:25 +0000 |
commit | c2352747d859facc179fa9338c7fa3a8335f0763 (patch) | |
tree | 71d0d7fc7d7a0047db807e2f9ffdd1a518d4a13c /cpp/src/tests/ConnectionOptions.h | |
parent | 401dc09a3c1c476b0f672307eb411b1bd6ccc277 (diff) | |
download | qpid-python-c2352747d859facc179fa9338c7fa3a8335f0763.tar.gz |
* make tcp-nodelay option available for all tests
* option for outputting csv from latency test (from lgoncalv@redhat.com)
* option for cumulative output from latency test (from lgoncalv@redhat.com)
* specify interval in millisecs instead of secs (from acme@redhat.com)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@666610 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/ConnectionOptions.h')
-rw-r--r-- | cpp/src/tests/ConnectionOptions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/tests/ConnectionOptions.h b/cpp/src/tests/ConnectionOptions.h index 4e0af7352f..1579ac0b57 100644 --- a/cpp/src/tests/ConnectionOptions.h +++ b/cpp/src/tests/ConnectionOptions.h @@ -45,7 +45,8 @@ struct ConnectionOptions : public qpid::Options, ("max-channels", optValue(maxChannels, "N"), "the maximum number of channels the client requires.") ("max-frame-size", optValue(maxFrameSize, "N"), "the maximum frame size to request.") ("bounds-multiplier", optValue(bounds, "N"), - "bound size of write queue (as a multiple of the max frame size)."); + "bound size of write queue (as a multiple of the max frame size).") + ("tcp-nodelay", optValue(tcpNoDelay), "Turn on tcp-nodelay"); } }; |