Fixed bug in inetd code. The server listened on tcp:@:9999 even
[yaz-moved-to-github.git] / odr / odr_oid.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_oid.c,v $
7  * Revision 1.12  1995-09-29 17:12:25  quinn
8  * Smallish
9  *
10  * Revision 1.11  1995/09/27  15:03:00  quinn
11  * Modified function heads & prototypes.
12  *
13  * Revision 1.10  1995/05/29  08:11:44  quinn
14  * Moved oid from odr/asn to util.
15  *
16  * Revision 1.9  1995/05/16  08:50:57  quinn
17  * License, documentation, and memory fixes
18  *
19  * Revision 1.8  1995/03/17  10:17:55  quinn
20  * Added memory management.
21  *
22  * Revision 1.7  1995/03/08  12:12:29  quinn
23  * Added better error checking.
24  *
25  * Revision 1.6  1995/03/01  08:40:56  quinn
26  * Smallish changes.
27  *
28  * Revision 1.5  1995/02/10  18:57:26  quinn
29  * More in the way of error-checking.
30  *
31  * Revision 1.4  1995/02/10  15:55:29  quinn
32  * Bug fixes, mostly.
33  *
34  * Revision 1.3  1995/02/09  15:51:49  quinn
35  * Works better now.
36  *
37  * Revision 1.2  1995/02/07  14:13:46  quinn
38  * Bug fixes.
39  *
40  * Revision 1.1  1995/02/03  17:04:38  quinn
41  * Initial revision
42  *
43  *
44  */
45
46 #include <odr.h>
47 #include <oid.h>
48
49 /*
50  * Top level oid en/decoder.
51  * Returns 1 on success, 0 on error.
52  */
53 int odr_oid(ODR o, Odr_oid **p, int opt)
54 {
55     int res, cons = 0;
56
57     if (o->error)
58         return 0;
59     if (o->t_class < 0)
60     {
61         o->t_class = ODR_UNIVERSAL;
62         o->t_tag = ODR_OID;
63     }
64     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
65         return 0;
66     if (!res)
67         return opt;
68     if (cons)
69     {
70         o->error = OPROTO;
71         return 0;
72     }
73     if (o->direction == ODR_PRINT)
74     {
75         int i;
76
77         fprintf(o->print, "%sOID:", odr_indent(o));
78         for (i = 0; (*p)[i] > -1; i++)
79             fprintf(o->print, " %d", (*p)[i]);
80         fprintf(o->print, "\n");
81         return 1;
82     }
83     if (o->direction == ODR_DECODE)
84         *p = odr_malloc(o, OID_SIZE * sizeof(**p));
85     return ber_oidc(o, *p);
86 }