diff options
| author | Alan Conway <aconway@apache.org> | 2010-06-02 15:49:49 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2010-06-02 15:49:49 +0000 |
| commit | e15ce475ce200560b650f8d6c512ffdaa42e76f5 (patch) | |
| tree | 4e517df89e54d195445a45b68875fc280e94f88d /qpid/cpp | |
| parent | 5ebb0bdaef84a57ea0b1bece0e07e7d915dfbdcb (diff) | |
| download | qpid-python-e15ce475ce200560b650f8d6c512ffdaa42e76f5.tar.gz | |
Fixed sporadic client "reserved bits not 0" exceptions with cluster + encryption.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@950608 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/src/qpid/broker/ConnectionHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/ConnectionHandler.cpp b/qpid/cpp/src/qpid/broker/ConnectionHandler.cpp index bf1af2fe88..225735deb6 100644 --- a/qpid/cpp/src/qpid/broker/ConnectionHandler.cpp +++ b/qpid/cpp/src/qpid/broker/ConnectionHandler.cpp @@ -188,7 +188,6 @@ void ConnectionHandler::Handler::open(const string& /*virtualHost*/, framing::Array array(0x95); // str16 array for (std::vector<Url>::iterator i = urls.begin(); i < urls.end(); ++i) array.add(boost::shared_ptr<Str16Value>(new Str16Value(i->str()))); - proxy.openOk(array); //install security layer if one has been negotiated: if (secured) { @@ -204,6 +203,7 @@ void ConnectionHandler::Handler::open(const string& /*virtualHost*/, authenticator->getUsername(s); userIdCallback(s); } + proxy.openOk(array); } |
