summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-11-11 01:43:55 +0000
committerStephen D. Huston <shuston@apache.org>2009-11-11 01:43:55 +0000
commit6a462465158c171096552b326b1825631dd0bc02 (patch)
tree6c49d4ce85648b165a52526cddab6b25d7fe0ca2
parent34f7b03fcbce2e80dc71640783dfbff772878060 (diff)
downloadqpid-python-6a462465158c171096552b326b1825631dd0bc02.tar.gz
Add new ssf arg to Sasl::start
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@834739 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/client/windows/SaslFactory.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp b/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp
index 3a662463c1..87df187ab2 100644
--- a/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp
+++ b/qpid/cpp/src/qpid/client/windows/SaslFactory.cpp
@@ -40,7 +40,7 @@ class WindowsSasl : public Sasl
public:
WindowsSasl(const ConnectionSettings&);
~WindowsSasl();
- std::string start(const std::string& mechanisms);
+ std::string start(const std::string& mechanisms, unsigned int ssf);
std::string step(const std::string& challenge);
std::string getMechanism();
std::string getUserId();
@@ -90,7 +90,8 @@ WindowsSasl::~WindowsSasl()
{
}
-std::string WindowsSasl::start(const std::string& mechanisms)
+std::string WindowsSasl::start(const std::string& mechanisms,
+ unsigned int /*ssf*/)
{
QPID_LOG(debug, "WindowsSasl::start(" << mechanisms << ")");