2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2005-08-10 03:06:39 +04:00
|
|
|
|
2005-08-18 19:22:33 +04:00
|
|
|
#ifndef nsAuth_h__
|
|
|
|
#define nsAuth_h__
|
2005-08-10 03:06:39 +04:00
|
|
|
|
2005-08-18 19:22:33 +04:00
|
|
|
/* types of packages */
|
|
|
|
enum pType {
|
|
|
|
PACKAGE_TYPE_KERBEROS,
|
|
|
|
PACKAGE_TYPE_NEGOTIATE,
|
|
|
|
PACKAGE_TYPE_NTLM
|
|
|
|
};
|
|
|
|
|
2015-05-19 21:15:34 +03:00
|
|
|
#include "mozilla/Logging.h"
|
2005-08-10 03:06:39 +04:00
|
|
|
|
|
|
|
//
|
|
|
|
// in order to do logging, the following environment variables need to be set:
|
|
|
|
//
|
|
|
|
// set NSPR_LOG_MODULES=negotiateauth:4
|
|
|
|
// set NSPR_LOG_FILE=negotiateauth.log
|
|
|
|
//
|
2016-01-28 21:35:00 +03:00
|
|
|
extern mozilla::LazyLogModule gNegotiateLog;
|
2005-08-10 03:06:39 +04:00
|
|
|
|
2015-06-04 01:25:57 +03:00
|
|
|
#define LOG(args) MOZ_LOG(gNegotiateLog, mozilla::LogLevel::Debug, args)
|
2005-08-10 03:06:39 +04:00
|
|
|
|
2005-08-18 19:22:33 +04:00
|
|
|
#endif /* !defined( nsAuth_h__ ) */
|