mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
61 lines
976 B
C
61 lines
976 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include "lber.h"
|
|
|
|
/*
|
|
* Print arbitrary stuff, for debugging.
|
|
*/
|
|
|
|
#ifdef LDAP_DEBUG
|
|
|
|
#ifndef NO_USERINTERFACE
|
|
#define BPLEN 48
|
|
|
|
void
|
|
lber_bprint( char *data, int len )
|
|
{
|
|
static char hexdig[] = "0123456789abcdef";
|
|
char out[ BPLEN ];
|
|
int i = 0;
|
|
|
|
memset( out, 0, BPLEN );
|
|
for ( ;; ) {
|
|
if ( len < 1 ) {
|
|
fprintf( stderr, "\t%s\n", ( i == 0 ) ? "(end)" : out );
|
|
break;
|
|
}
|
|
|
|
#ifndef HEX
|
|
if ( isgraph( (unsigned char)*data )) {
|
|
out[ i ] = ' ';
|
|
out[ i+1 ] = *data;
|
|
} else {
|
|
#endif
|
|
out[ i ] = hexdig[ ( *data & 0xf0 ) >> 4 ];
|
|
out[ i+1 ] = hexdig[ *data & 0x0f ];
|
|
#ifndef HEX
|
|
}
|
|
#endif
|
|
i += 2;
|
|
len--;
|
|
data++;
|
|
|
|
if ( i > BPLEN - 2 ) {
|
|
fprintf( stderr, "\t%s\n", out );
|
|
memset( out, 0, BPLEN );
|
|
i = 0;
|
|
continue;
|
|
}
|
|
out[ i++ ] = ' ';
|
|
}
|
|
}
|
|
#else /* NO_USERINTERFACE */
|
|
void
|
|
lber_bprint( char *data, int len )
|
|
{
|
|
}
|
|
#endif /* NO_USERINTERFACE */
|
|
|
|
#endif
|