mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 23:59:34 -05:00
This could cause problems on odd systems. The generic headers should be extended as needed to include necessary system headers or, if necessary, make explicit declarations. Extended ac/string.h header to look for string.h/strings.h if STDC_HEADERS is not defined. Also provide basic declarations for str*() functions. This could cause problems on odd systems. Extended ac/unistd.h header to define basic declaration for misc functions that might be missing from headers. This includes externs for getenv(), getopt(), mktemp(), tempname(). Protect fax500.h from multiple inclusion. Moved includes of system/generic headers back to source files. Made mail500 helper functions static. Fixed includes of ctype.h, signal.h, etc. to use generics. lutil/tempname.c: was including stdlib.h twice, one should stdio.h. Wrapped <sys/resource.h> with HAVE_SYS_RESOURCE_H. lber/io.c/ber_get_next(): Changed noctets back to signed. Used with BerRead which expects signed int as second arg and returns signed int.
169 lines
3.3 KiB
C
169 lines
3.3 KiB
C
/* test.c - lber encoding test program */
|
|
/*
|
|
* Copyright (c) 1990 Regents of the University of Michigan.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/socket.h>
|
|
#include <ac/string.h>
|
|
#include <ac/unistd.h>
|
|
|
|
#ifdef HAVE_CONSOLE_H
|
|
#include <console.h>
|
|
#endif /* HAVE_CONSOLE_H */
|
|
|
|
#include "lber.h"
|
|
|
|
static void usage( char *name )
|
|
{
|
|
fprintf( stderr, "usage: %s fmtstring\n", name );
|
|
}
|
|
|
|
main( int argc, char **argv )
|
|
{
|
|
#ifdef notdef
|
|
int i, len;
|
|
char *s, *p;
|
|
#endif
|
|
int num;
|
|
Seqorset *sos = NULLSEQORSET;
|
|
BerElement *ber;
|
|
Sockbuf sb;
|
|
|
|
if ( argc < 2 ) {
|
|
usage( argv[0] );
|
|
exit( 1 );
|
|
}
|
|
|
|
memset( &sb, 0, sizeof(sb) );
|
|
sb.sb_sd = 1;
|
|
sb.sb_ber.ber_buf = NULL;
|
|
|
|
#ifdef HAVE_CONSOLE_H
|
|
ccommand( &argv );
|
|
cshow( stdout );
|
|
|
|
if (( sb.sb_sd = open( "lber-test", O_WRONLY|O_CREAT|O_TRUNC|O_BINARY ))
|
|
< 0 ) {
|
|
perror( "open" );
|
|
exit( 1 );
|
|
}
|
|
#endif /* MACOS */
|
|
|
|
if ( (ber = ber_alloc()) == NULLBER ) {
|
|
perror( "ber_alloc" );
|
|
exit( 1 );
|
|
}
|
|
|
|
num = 7;
|
|
if ( ber_printf( ber, "{ti}", 0x1f44, num ) == -1 ) {
|
|
fprintf( stderr, "ber_printf returns -1" );
|
|
exit( 1 );
|
|
}
|
|
|
|
if ( ber_flush( &sb, ber, 1 ) == -1 ) {
|
|
perror( "ber_flush" );
|
|
exit( 1 );
|
|
}
|
|
#ifdef notdef
|
|
for ( s = argv[1]; *s; s++ ) {
|
|
if ( fgets( buf, sizeof(buf), stdin ) == NULL )
|
|
break;
|
|
if ( (p = strchr( buf, '\n' )) != NULL )
|
|
*p = '\0';
|
|
|
|
switch ( *s ) {
|
|
case 'i': /* int */
|
|
case 'b': /* boolean */
|
|
i = atoi( buf );
|
|
if ( ber_printf( ber, "i", i ) == -1 ) {
|
|
fprintf( stderr, "ber_printf i\n" );
|
|
exit( 1 );
|
|
}
|
|
break;
|
|
|
|
case 'e': /* enumeration */
|
|
i = va_arg( ap, int );
|
|
rc = ber_put_enum( ber, i, (char)ber->ber_tag );
|
|
break;
|
|
|
|
case 'n': /* null */
|
|
rc = ber_put_null( ber, (char)ber->ber_tag );
|
|
break;
|
|
|
|
case 'o': /* octet string (non-null terminated) */
|
|
s = va_arg( ap, char * );
|
|
len = va_arg( ap, int );
|
|
rc = ber_put_ostring( ber, s, len, (char)ber->ber_tag );
|
|
break;
|
|
|
|
case 's': /* string */
|
|
s = va_arg( ap, char * );
|
|
rc = ber_put_string( ber, s, (char)ber->ber_tag );
|
|
break;
|
|
|
|
case 'B': /* bit string */
|
|
s = va_arg( ap, char * );
|
|
len = va_arg( ap, int ); /* in bits */
|
|
rc = ber_put_bitstring( ber, s, len, (char)ber->ber_tag );
|
|
break;
|
|
|
|
case 't': /* tag for the next element */
|
|
ber->ber_tag = va_arg( ap, int );
|
|
ber->ber_usertag = 1;
|
|
break;
|
|
|
|
case 'v': /* vector of strings */
|
|
if ( (ss = va_arg( ap, char ** )) == NULL )
|
|
break;
|
|
for ( i = 0; ss[i] != NULL; i++ ) {
|
|
if ( (rc = ber_put_string( ber, ss[i],
|
|
(char)ber->ber_tag )) == -1 )
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case 'V': /* sequences of strings + lengths */
|
|
if ( (bv = va_arg( ap, struct berval ** )) == NULL )
|
|
break;
|
|
for ( i = 0; bv[i] != NULL; i++ ) {
|
|
if ( (rc = ber_put_ostring( ber, bv[i]->bv_val,
|
|
bv[i]->bv_len, (char)ber->ber_tag )) == -1 )
|
|
break;
|
|
}
|
|
break;
|
|
|
|
case '{': /* begin sequence */
|
|
rc = ber_start_seq( ber, (char)ber->ber_tag );
|
|
break;
|
|
|
|
case '}': /* end sequence */
|
|
rc = ber_put_seqorset( ber );
|
|
break;
|
|
|
|
case '[': /* begin set */
|
|
rc = ber_start_set( ber, (char)ber->ber_tag );
|
|
break;
|
|
|
|
case ']': /* end set */
|
|
rc = ber_put_seqorset( ber );
|
|
break;
|
|
|
|
default:
|
|
#ifdef LDAP_LIBUI
|
|
fprintf( stderr, "unknown fmt %c\n", *fmt );
|
|
#endif /* LDAP_LIBUI */
|
|
rc = -1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
return( 0 );
|
|
}
|