summaryrefslogtreecommitdiff
path: root/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
commitc2352747d859facc179fa9338c7fa3a8335f0763 (patch)
tree71d0d7fc7d7a0047db807e2f9ffdd1a518d4a13c /cpp/src/tests/ConnectionOptions.h
parent401dc09a3c1c476b0f672307eb411b1bd6ccc277 (diff)
downloadqpid-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.h3
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");
}
};