mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
ba10340a7c
--HG-- extra : rebase_source : bf2a9c8de523d78eac780da7d7d755be47b97114
39 lines
885 B
C++
39 lines
885 B
C++
/* vim:set ts=4 sw=4 et cindent: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef nsAuthSASL_h__
|
|
#define nsAuthSASL_h__
|
|
|
|
#include "nsIAuthModule.h"
|
|
#include "nsString.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "mozilla/Attributes.h"
|
|
|
|
/* This class is implemented using the nsAuthGSSAPI class, and the same
|
|
* thread safety constraints which are documented in nsAuthGSSAPI.h
|
|
* apply to this class
|
|
*/
|
|
|
|
class nsAuthSASL MOZ_FINAL : public nsIAuthModule
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIAUTHMODULE
|
|
|
|
nsAuthSASL();
|
|
|
|
private:
|
|
~nsAuthSASL() { Reset(); }
|
|
|
|
void Reset();
|
|
|
|
nsCOMPtr<nsIAuthModule> mInnerModule;
|
|
nsString mUsername;
|
|
bool mSASLReady;
|
|
};
|
|
|
|
#endif /* nsAuthSASL_h__ */
|
|
|