]> git.sur5r.net Git - openldap/blob - libraries/liblber/dtest.c
Added lber_get/set_option. Removed lber_debug/ldap_debug.
[openldap] / libraries / liblber / dtest.c
1 /* dtest.c - lber decoding test program */
2 /*
3  * Copyright (c) 1990 Regents of the University of Michigan.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted
7  * provided that this notice is preserved and that due credit is given
8  * to the University of Michigan at Ann Arbor. The name of the University
9  * may not be used to endorse or promote products derived from this
10  * software without specific prior written permission. This software
11  * is provided ``as is'' without express or implied warranty.
12  */
13
14 #include "portable.h"
15
16 #include <stdio.h>
17 #include <stdlib.h>
18
19 #include <ac/string.h>
20 #include <ac/socket.h>
21 #include <ac/unistd.h>
22
23 #ifdef HAVE_CONSOLE_H
24 #include <console.h>
25 #endif /* MACOS */
26
27 #include <lber.h>
28
29 static void usage( char *name )
30 {
31         fprintf( stderr, "usage: %s fmt\n", name );
32 }
33
34 int
35 main( int argc, char **argv )
36 {
37         long            i;
38         unsigned long   len;
39         int             tag;
40         BerElement      *ber;
41         Sockbuf         *sb;
42
43 #ifdef HAVE_CONSOLE_H
44         ccommand( &argv );
45         cshow( stdout );
46 #endif /* MACOS */
47
48         sb = lber_sockbuf_alloc_fd( fileno(stdin) );
49
50         if( (ber = ber_alloc_t(LBER_USE_DER)) == NULL ) {
51                 perror( "ber_alloc_t" );
52                 exit( 1 );
53         }
54
55         if ( (tag = ber_get_next( sb, &len, ber )) == -1 ) {
56                 perror( "ber_get_next" );
57                 exit( 1 );
58         }
59         printf( "message has tag 0x%x and length %ld\n", tag, len );
60
61         if ( ber_scanf( ber, "i", &i ) == -1 ) {
62                 fprintf( stderr, "ber_scanf returns -1\n" );
63                 exit( 1 );
64         }
65         printf( "got int %ld\n", i );
66
67         lber_sockbuf_free( sb );
68         return( 0 );
69 }