Bug 1858509 add thread-safety annotations around MediaSourceDemuxer::mMonitor r=alwu
[gecko.git] / extensions / auth / nsAuth.h
blob254b33000bfdc0c67305a847ba7473ada6d84b50
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #ifndef nsAuth_h__
6 #define nsAuth_h__
8 /* types of packages */
9 enum pType { PACKAGE_TYPE_KERBEROS, PACKAGE_TYPE_NEGOTIATE, PACKAGE_TYPE_NTLM };
11 #include "mozilla/Logging.h"
14 // in order to do logging, the following environment variables need to be set:
16 // set NSPR_LOG_MODULES=negotiateauth:4
17 // set NSPR_LOG_FILE=negotiateauth.log
19 extern mozilla::LazyLogModule gNegotiateLog;
21 #define LOG(args) MOZ_LOG(gNegotiateLog, mozilla::LogLevel::Debug, args)
23 #endif /* !defined( nsAuth_h__ ) */