diff options
author | Alan Conway <aconway@apache.org> | 2010-07-20 19:56:42 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-07-20 19:56:42 +0000 |
commit | 0af66bbe3d82b53e224b63b8756f5b11192a36ca (patch) | |
tree | f990b65c9a4ed9a62d3e05a59a14547c76a31f90 /cpp/src/qpid/cluster/Connection.h | |
parent | 21f05c5ae445a134d75d5e6501e38f3f6e913fc7 (diff) | |
download | qpid-python-0af66bbe3d82b53e224b63b8756f5b11192a36ca.tar.gz |
Fix bug in cluster with authentication: nodes exit with "unauthorized-access"
Adding a node to a cluster on which authentication is enabled and on
which there are existing connections authenticated with mechanisms
other than anonymous, may result in nodes exiting the cluster with
inconsistent authorisation errors.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@965979 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Connection.h')
-rw-r--r-- | cpp/src/qpid/cluster/Connection.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/cluster/Connection.h b/cpp/src/qpid/cluster/Connection.h index aec18d73a4..24b8c8532f 100644 --- a/cpp/src/qpid/cluster/Connection.h +++ b/cpp/src/qpid/cluster/Connection.h @@ -114,6 +114,8 @@ class Connection : // State update methods. void shadowPrepare(const std::string&); + void shadowSetUser(const std::string&); + void sessionState(const framing::SequenceNumber& replayStart, const framing::SequenceNumber& sendCommandPoint, const framing::SequenceSet& sentIncomplete, |