diff options
author | Andrew Stitcher <astitcher@apache.org> | 2008-09-11 04:45:26 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2008-09-11 04:45:26 +0000 |
commit | 468b4b6ddaa3d96bb743cdbd27ded651eea31847 (patch) | |
tree | f1987d223e56792386f884029664dae277bff754 /cpp/src/tests/ConnectionOptions.h | |
parent | 51ea054146d0af71640bd44e8e75494847216a31 (diff) | |
download | qpid-python-468b4b6ddaa3d96bb743cdbd27ded651eea31847.tar.gz |
Refactored c++ client library to allow multiple protocols to be
used simultaneously:
- Added in capability for client library plugins:
Client library will load in plugin modules from
the client library module directory on library load.
- Add protocol option into the standard client command line options
- Split plugin module load area into daemon and client;
default daemon module directory is now <libdir>/qpid/daemon,
default client module directory is <libdir>/qpid/client.
- Changed names of plugins to leave out libqpid prefix
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@694113 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/ConnectionOptions.h')
-rw-r--r-- | cpp/src/tests/ConnectionOptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/tests/ConnectionOptions.h b/cpp/src/tests/ConnectionOptions.h index 1579ac0b57..0130842668 100644 --- a/cpp/src/tests/ConnectionOptions.h +++ b/cpp/src/tests/ConnectionOptions.h @@ -37,6 +37,7 @@ struct ConnectionOptions : public qpid::Options, addOptions() ("broker,b", optValue(host, "HOST"), "Broker host to connect to") ("port,p", optValue(port, "PORT"), "Broker port to connect to") + ("protocol,P", optValue(protocol, "tcp|rdma"), "Protocol to use for broker connection") ("virtualhost,v", optValue(virtualhost, "VHOST"), "virtual host") ("username", optValue(username, "USER"), "user name for broker log in.") ("password", optValue(password, "PASSWORD"), "password for broker log in.") |