diff options
| author | Gordon Sim <gsim@apache.org> | 2013-05-07 10:57:17 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-05-07 10:57:17 +0000 |
| commit | 7d27d6abd72220f0e7ffbd14ff8912c94db3cfed (patch) | |
| tree | 2c5b5f9e2a44ef03f46489532ce52ff13d9d5635 /qpid/cpp/include | |
| parent | cc74814fd8106d63f2493989ca3e680e9651e89a (diff) | |
| download | qpid-python-7d27d6abd72220f0e7ffbd14ff8912c94db3cfed.tar.gz | |
QPID-4808: Augmented documentation of connection options and added description of the 'protocol' option
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1479855 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rw-r--r-- | qpid/cpp/include/qpid/messaging/Connection.h | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/qpid/cpp/include/qpid/messaging/Connection.h b/qpid/cpp/include/qpid/messaging/Connection.h index 1fc5847f74..ee280ad1c8 100644 --- a/qpid/cpp/include/qpid/messaging/Connection.h +++ b/qpid/cpp/include/qpid/messaging/Connection.h @@ -51,15 +51,20 @@ class QPID_MESSAGING_CLASS_EXTERN Connection : public qpid::messaging::Handle<Co /** * Current implementation supports the following options: * - * - username - * - password - * - heartbeat - * - tcp_nodelay - * - sasl_mechanisms - * - sasl_service - * - sasl_min_ssf - * - sasl_max_ssf - * - transport + * - heartbeat: the heartbeat interval in seconds + * - tcp_nodelay: true/false, whether nagle should be disabled or not + * - transport: the underlying transport to use (e.g. tcp, ssl, rdma) + * - protocol: the version of AMQP to use (e.g. amqp0-10 or amqp1.0) + * + * (Note: the transports and/or protocols recognised may depend on + * which plugins are loaded) + * + * - username: the username to authenticate as + * - password: the password to use if required by the selected authentication mechanism + * - sasl_mechanisms: a space separate dlist of acceptable SASL mechanisms + * - sasl_min_ssf: the minimum acceptable security strength factor + * - sasl_max_ssf: the minimum acceptable security strength factor + * - sasl_service: the service name if needed by the SASL mechanism in use * * Reconnect behaviour can be controlled through the following options: * |
