diff options
| author | Jonathan Robie <jonathan@apache.org> | 2009-08-21 16:58:31 +0000 |
|---|---|---|
| committer | Jonathan Robie <jonathan@apache.org> | 2009-08-21 16:58:31 +0000 |
| commit | 330157285fc453a3b07b251cb90e2d167eab2fdb (patch) | |
| tree | 1b8d13456387a543373ca9cea06a1ce924d68703 /cpp/include | |
| parent | 2d732d8fc69ccd23328c720718e13697868fd640 (diff) | |
| download | qpid-python-330157285fc453a3b07b251cb90e2d167eab2fdb.tar.gz | |
Added documentation for AMQP 0-10 URL format.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@806641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include')
| -rw-r--r-- | cpp/include/qpid/client/Connection.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cpp/include/qpid/client/Connection.h b/cpp/include/qpid/client/Connection.h index b7b967d232..0f5999cdcc 100644 --- a/cpp/include/qpid/client/Connection.h +++ b/cpp/include/qpid/client/Connection.h @@ -43,7 +43,21 @@ class ConnectionImpl; * * \ingroup clientapi * + * Some methods use an AMQP 0-10 URL to specify connection parameters. + * This is defined in the AMQP 0-10 specification (http://jira.amqp.org/confluence/display/AMQP/AMQP+Specification). + * + * amqp_url = "amqp:" prot_addr_list + * prot_addr_list = [prot_addr ","]* prot_addr + * prot_addr = tcp_prot_addr | tls_prot_addr + * + * tcp_prot_addr = tcp_id tcp_addr + * tcp_id = "tcp:" | "" + * tcp_addr = [host [":" port] ] + * host = <as per http://www.ietf.org/rfc/rfc3986.txt> + * port = number]]> + * */ + class Connection { framing::ProtocolVersion version; |
