Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / security / manager / ssl / nsNTLMAuthModule.h
blob25a96a09d852aad75f09877b24bef19a6696287d
1 /* vim:set ts=2 sw=2 et cindent: */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsNTLMAuthModule_h__
7 #define nsNTLMAuthModule_h__
9 #include "nsIAuthModule.h"
10 #include "nsString.h"
12 class nsNTLMAuthModule : public nsIAuthModule {
13 public:
14 NS_DECL_ISUPPORTS
15 NS_DECL_NSIAUTHMODULE
17 nsNTLMAuthModule() : mNTLMNegotiateSent(false) {}
19 nsresult InitTest();
21 static void SetSendLM(bool sendLM);
23 protected:
24 virtual ~nsNTLMAuthModule();
26 private:
27 nsString mDomain;
28 nsString mUsername;
29 nsString mPassword;
30 bool mNTLMNegotiateSent;
33 #endif // nsNTLMAuthModule_h__