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