diff options
| author | Gordon Sim <gsim@apache.org> | 2012-11-23 16:56:57 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2012-11-23 16:56:57 +0000 |
| commit | 3ca832590dff522356270a0d9f89d93799c26ac2 (patch) | |
| tree | e6f633d4c7a9931dadc0fb69687bcc83584b5f9b /qpid/cpp | |
| parent | 12c44aee37296d22c1c435ddc4980099932ccd6f (diff) | |
| download | qpid-python-3ca832590dff522356270a0d9f89d93799c26ac2.tar.gz | |
QPID-4464: set container name when sending open
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1412962 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/src/qpid/broker/amqp/Connection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/broker/amqp/Connection.cpp b/qpid/cpp/src/qpid/broker/amqp/Connection.cpp index 329b4263ee..1f135cf931 100644 --- a/qpid/cpp/src/qpid/broker/amqp/Connection.cpp +++ b/qpid/cpp/src/qpid/broker/amqp/Connection.cpp @@ -157,6 +157,7 @@ void Connection::process() QPID_LOG(trace, id << " process()"); if ((pn_connection_state(connection) & REQUIRES_OPEN) == REQUIRES_OPEN) { QPID_LOG_CAT(debug, model, id << " connection opened"); + pn_connection_set_container(connection, broker.getFederationTag().c_str()); pn_connection_open(connection); } |
