]> git.sur5r.net Git - openldap/blob - libraries/liblber/dtest.c
s/<stdlib.h>/<ac/stdlib.h>/
[openldap] / libraries / liblber / dtest.c
1 /* dtest.c - lber decoding test program */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /* Portions
7  * Copyright (c) 1990 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #include <ac/stdlib.h>
23 #include <ac/string.h>
24 #include <ac/socket.h>
25 #include <ac/unistd.h>
26
27 #ifdef HAVE_CONSOLE_H
28 #include <console.h>
29 #endif
30
31 #include <lber.h>
32
33 static void usage( char *name )
34 {
35         fprintf( stderr, "usage: %s fmt\n", name );
36 }
37
38 int
39 main( int argc, char **argv )
40 {
41         char *s;
42         int rc;
43
44         unsigned long tag, len;
45
46         BerElement      *ber;
47         Sockbuf         *sb;
48
49         /* enable debugging */
50         int ival = -1;
51         ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &ival );
52
53         if ( argc < 2 ) {
54                 usage( argv[0] );
55                 return( EXIT_FAILURE );
56         }
57
58 #ifdef HAVE_CONSOLE_H
59         ccommand( &argv );
60         cshow( stdout );
61 #endif
62
63         sb = ber_sockbuf_alloc_fd( fileno(stdin) );
64
65         if( (ber = ber_alloc_t(LBER_USE_DER)) == NULL ) {
66                 perror( "ber_alloc_t" );
67                 return( EXIT_FAILURE );
68         }
69
70         if(( tag = ber_get_next( sb, &len, ber) ) == LBER_ERROR ) {
71                 perror( "ber_get_next" );
72                 return( EXIT_FAILURE );
73         }
74
75         printf("decode: message tag 0x%lx and length %ld\n",
76                 tag, len );
77
78         for( s = argv[1]; *s; s++ ) {
79                 char buf[128];
80                 char fmt[2];
81                 fmt[0] = *s;
82                 fmt[1] = '\0';
83
84                 printf("decode: format %s\n", fmt );
85                 len = sizeof(buf);
86                 rc = ber_scanf( ber, fmt, &buf[0], &len );
87
88                 if( rc == LBER_ERROR ) {
89                         perror( "ber_scanf" );
90                         return( EXIT_FAILURE );
91                 }
92         }
93
94         ber_sockbuf_free( sb );
95         return( EXIT_SUCCESS );
96 }