summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/ConnectionOptions.h
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-06-11 10:41:25 +0000
committerGordon Sim <gsim@apache.org>2008-06-11 10:41:25 +0000
commitfc86c08baea896925117d3f11b8c7cac3e7567f9 (patch)
treee46bd00f0b646e0ed2dd3c629a8f99dd5f640174 /qpid/cpp/src/tests/ConnectionOptions.h
parent94d2a3eddd2080cf3960cd269f9793bf7b39c927 (diff)
downloadqpid-python-fc86c08baea896925117d3f11b8c7cac3e7567f9.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@666610 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/ConnectionOptions.h')
-rw-r--r--qpid/cpp/src/tests/ConnectionOptions.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ConnectionOptions.h b/qpid/cpp/src/tests/ConnectionOptions.h
index 4e0af7352f..1579ac0b57 100644
--- a/qpid/cpp/src/tests/ConnectionOptions.h
+++ b/qpid/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");
}
};