First kick.
[yaz-moved-to-github.git] / odr / odr_oct.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_oct.c,v $
7  * Revision 1.1  1995-02-02 16:21:54  quinn
8  * First kick.
9  *
10  */
11
12 #include <odr.h>
13
14 /*
15  * Top level octet string en/decoder.
16  * Returns 1 on success, 0 on error.
17  */
18 int odr_octetstring(ODR o, ODR_OCT **p, int opt)
19 {
20     int res, cons = 0;
21
22     if (o->t_class < 0)
23     {
24         o->t_class = ODR_UNIVERSAL;
25         o->t_tag = ODR_OCTETSTRING;
26     }
27     if ((res = ber_tag(o, *p, o->t_class, o->t_tag, &cons)) < 0)
28         return 0;
29     if (!res)
30     {
31         *p = 0;
32         return opt;
33     }
34     if (o->direction == ODR_PRINT)
35     {
36         fprintf(o->print, "OCTETSTRING(len=%d)\n", (*p)->len);
37         return 1;
38     }
39     if (o->direction == ODR_DECODE && !*p)
40     {
41         *p = nalloc(o, sizeof(ODR_OCT));
42         (*p)->size= 0;
43         (*p)->len = 0;
44         (*p)->buf = 0;
45     }
46     return ber_octetstring(o, *p, cons);
47 }