diff options
author | Stephen D. Huston <shuston@apache.org> | 2009-11-11 01:43:55 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2009-11-11 01:43:55 +0000 |
commit | ccc54f3eccfef128ad50a02bbcc56d5bc866d079 (patch) | |
tree | f1d0e38577c99a1a39f385b9081ed000c2ac264e /cpp | |
parent | 01322ff7f9771a249bce5eb18810f09fcf9bee57 (diff) | |
download | qpid-python-ccc54f3eccfef128ad50a02bbcc56d5bc866d079.tar.gz |
Add new ssf arg to Sasl::start
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@834739 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/client/windows/SaslFactory.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/client/windows/SaslFactory.cpp b/cpp/src/qpid/client/windows/SaslFactory.cpp index 3a662463c1..87df187ab2 100644 --- a/cpp/src/qpid/client/windows/SaslFactory.cpp +++ b/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 << ")"); |