From: Julius Enarusai Date: Mon, 1 Apr 2002 22:28:02 +0000 (+0000) Subject: Added LDAP_LOG Messages X-Git-Tag: OPENLDAP_REL_ENG_2_MP~275 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e30c52dfb73e1c6c6e466d5072e3bdbaa5ec95ac;p=openldap Added LDAP_LOG Messages --- diff --git a/libraries/libldap/sasl.c b/libraries/libldap/sasl.c index aa43fc6f8b..93a52472f8 100644 --- a/libraries/libldap/sasl.c +++ b/libraries/libldap/sasl.c @@ -61,7 +61,11 @@ ldap_sasl_bind( BerElement *ber; int rc; +#ifdef NEW_LOGGING + LDAP_LOG (( "sasl", LDAP_LEVEL_ENTRY, "ldap_sasl_bind\n" )); +#else Debug( LDAP_DEBUG_TRACE, "ldap_sasl_bind\n", 0, 0, 0 ); +#endif assert( ld != NULL ); assert( LDAP_VALID( ld ) ); @@ -169,7 +173,11 @@ ldap_sasl_bind_s( LDAPMessage *result; struct berval *scredp = NULL; +#ifdef NEW_LOGGING + LDAP_LOG (( "sasl", LDAP_LEVEL_ENTRY, "ldap_sasl_bind_s\n" )); +#else Debug( LDAP_DEBUG_TRACE, "ldap_sasl_bind_s\n", 0, 0, 0 ); +#endif /* do a quick !LDAPv3 check... ldap_sasl_bind will do the rest. */ if( servercredp != NULL ) { @@ -251,7 +259,11 @@ ldap_parse_sasl_bind_result( ber_tag_t tag; BerElement *ber; +#ifdef NEW_LOGGING + LDAP_LOG (( "sasl", LDAP_LEVEL_ENTRY, "ldap_parse_sasl_bind_result\n" )); +#else Debug( LDAP_DEBUG_TRACE, "ldap_parse_sasl_bind_result\n", 0, 0, 0 ); +#endif assert( ld != NULL ); assert( LDAP_VALID( ld ) ); @@ -364,7 +376,11 @@ ldap_pvt_sasl_getmechs ( LDAP *ld, char **pmechlist ) char **values, *mechlist; int rc; +#ifdef NEW_LOGGING + LDAP_LOG (( "sasl", LDAP_LEVEL_ENTRY, "ldap_pvt_sasl_getmech\n" )); +#else Debug( LDAP_DEBUG_TRACE, "ldap_pvt_sasl_getmech\n", 0, 0, 0 ); +#endif rc = ldap_search_s( ld, "", LDAP_SCOPE_BASE, NULL, attrs, 0, &res ); @@ -448,16 +464,26 @@ ldap_sasl_interactive_bind_s( goto done; } +#ifdef NEW_LOGGING + LDAP_LOG (( "sasl", LDAP_LEVEL_DETAIL1, + "ldap_interactive_sasl_bind_s: server supports: %s\n", smechs )); +#else Debug( LDAP_DEBUG_TRACE, "ldap_interactive_sasl_bind_s: server supports: %s\n", smechs, 0, 0 ); +#endif mechs = smechs; } else { +#ifdef NEW_LOGGING + LDAP_LOG (( "sasl", LDAP_LEVEL_DETAIL1, + "ldap_interactive_sasl_bind_s: user selected: %s\n", mechs )); +#else Debug( LDAP_DEBUG_TRACE, "ldap_interactive_sasl_bind_s: user selected: %s\n", mechs, 0, 0 ); +#endif } rc = ldap_int_sasl_bind( ld, dn, mechs,