mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
debug: new debug class for kerberos
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
parent
6cddaa577b
commit
daeb74aed8
@ -43,6 +43,7 @@
|
||||
<listitem><para><parameter moreinfo="none">tevent</parameter></para></listitem>
|
||||
<listitem><para><parameter moreinfo="none">auth_audit</parameter></para></listitem>
|
||||
<listitem><para><parameter moreinfo="none">auth_json_audit</parameter></para></listitem>
|
||||
<listitem><para><parameter moreinfo="none">kerberos</parameter></para></listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para>Authentication and authorization audit information is logged
|
||||
|
@ -539,6 +539,7 @@ static const char *default_classname_table[] = {
|
||||
[DBGC_TEVENT] = "tevent",
|
||||
[DBGC_AUTH_AUDIT] = "auth_audit",
|
||||
[DBGC_AUTH_AUDIT_JSON] = "auth_json_audit",
|
||||
[DBGC_KERBEROS] = "kerberos",
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -91,6 +91,8 @@ bool dbghdr( int level, const char *location, const char *func);
|
||||
#define DBGC_TEVENT 23
|
||||
#define DBGC_AUTH_AUDIT 24
|
||||
#define DBGC_AUTH_AUDIT_JSON 25
|
||||
#define DBGC_KERBEROS 26
|
||||
|
||||
/* So you can define DBGC_CLASS before including debug.h */
|
||||
#ifndef DBGC_CLASS
|
||||
#define DBGC_CLASS 0 /* override as shown above */
|
||||
|
@ -77,7 +77,7 @@ static void smb_krb5_debug_close(void *private_data) {
|
||||
#ifdef SAMBA4_USES_HEIMDAL
|
||||
static void smb_krb5_debug_wrapper(const char *timestr, const char *msg, void *private_data)
|
||||
{
|
||||
DEBUG(3, ("Kerberos: %s\n", msg));
|
||||
DEBUGC(DBGC_KERBEROS, 3, ("Kerberos: %s\n", msg));
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user