diff options
| author | Gordon Sim <gsim@apache.org> | 2013-05-24 16:49:28 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-05-24 16:49:28 +0000 |
| commit | b40c56fc005a65a06ed56b6e464a1745bf80b61a (patch) | |
| tree | b859815eefd254b2a53fb1f9bacd7904f13f9fae /cpp/src/qpid/messaging/ConnectionOptions.cpp | |
| parent | 7c2fa376c4536daaf7ba279ed3198497ba3724e4 (diff) | |
| download | qpid-python-b40c56fc005a65a06ed56b6e464a1745bf80b61a.tar.gz | |
QPID-4888: correct handling of link naming
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1486115 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/messaging/ConnectionOptions.cpp')
| -rw-r--r-- | cpp/src/qpid/messaging/ConnectionOptions.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/messaging/ConnectionOptions.cpp b/cpp/src/qpid/messaging/ConnectionOptions.cpp index ecd5ba9693..746666a79c 100644 --- a/cpp/src/qpid/messaging/ConnectionOptions.cpp +++ b/cpp/src/qpid/messaging/ConnectionOptions.cpp @@ -113,6 +113,8 @@ void ConnectionOptions::set(const std::string& name, const qpid::types::Variant& sslCertName = value.asString(); } else if (name == "x-reconnect-on-limit-exceeded" || name == "x_reconnect_on_limit_exceeded") { reconnectOnLimitExceeded = value; + } else if (name == "container-id" || name == "container_id") { + identifier = value.asString(); } else { throw qpid::messaging::MessagingException(QPID_MSG("Invalid option: " << name << " not recognised")); } |
