1 /* vim:set ts=4 sw=4 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/. */
5 
6 #ifndef nsHttpNegotiateAuth_h__
7 #define nsHttpNegotiateAuth_h__
8 
9 #include "nsIHttpAuthenticator.h"
10 #include "nsIURI.h"
11 #include "mozilla/Attributes.h"
12 #include "mozilla/LazyIdleThread.h"
13 
14 // The nsHttpNegotiateAuth class provides responses for the GSS-API Negotiate
15 // method as specified by Microsoft in draft-brezak-spnego-http-04.txt
16 
17 class nsHttpNegotiateAuth final : public nsIHttpAuthenticator {
18  public:
19   NS_DECL_THREADSAFE_ISUPPORTS
20   NS_DECL_NSIHTTPAUTHENTICATOR
21 
22  private:
~nsHttpNegotiateAuth()23   ~nsHttpNegotiateAuth() {}
24 
25   // returns the value of the given boolean pref
26   bool TestBoolPref(const char *pref);
27 
28   // tests if the host part of an uri is fully qualified
29   bool TestNonFqdn(nsIURI *uri);
30 
31   // Thread for GenerateCredentialsAsync
32   RefPtr<mozilla::LazyIdleThread> mNegotiateThread;
33 };
34 #endif /* nsHttpNegotiateAuth_h__ */
35