blob: ded466ba616b729f4c9524d0ab63c47547efd69b [file] [log] [blame]
Lev Walkinb9189732004-09-10 09:37:12 +00001
2/*** <<< INCLUDES [T1] >>> ***/
3
4#include <INTEGER.h>
5#include <ANY.h>
6#include <constr_SEQUENCE.h>
7
8/*** <<< DEPS [T1] >>> ***/
9
10extern asn1_TYPE_descriptor_t asn1_DEF_T1;
11
12/*** <<< TYPE-DECLS [T1] >>> ***/
13
14
15typedef struct T1 {
16 INTEGER_t i;
17 ANY_t any;
18
19 /* Context for parsing across buffer boundaries */
20 ber_dec_ctx_t _ber_dec_ctx;
21} T1_t;
22
23/*** <<< STAT-DEFS [T1] >>> ***/
24
25static asn1_TYPE_member_t asn1_MBR_T1[] = {
26 { ATF_NOFLAGS, 0, offsetof(struct T1, i),
27 .tag = (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
28 .tag_mode = 0,
29 .type = (void *)&asn1_DEF_INTEGER,
30 .memb_constraints = 0, /* Defer to actual type */
31 .name = "i"
32 },
33 { ATF_OPEN_TYPE | ATF_NOFLAGS, 0, offsetof(struct T1, any),
34 .tag = -1 /* Ambiguous tag (ANY?) */,
35 .tag_mode = 0,
36 .type = (void *)&asn1_DEF_ANY,
37 .memb_constraints = 0, /* Defer to actual type */
38 .name = "any"
39 },
40};
41static ber_tlv_tag_t asn1_DEF_T1_tags[] = {
42 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
43};
44static asn1_TYPE_tag2member_t asn1_DEF_T1_tag2el[] = {
45 { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* i at 15 */
46};
47static asn1_SEQUENCE_specifics_t asn1_DEF_T1_specs = {
48 sizeof(struct T1),
49 offsetof(struct T1, _ber_dec_ctx),
50 asn1_DEF_T1_tag2el,
51 1, /* Count of tags in the map */
52 -1, /* Start extensions */
53 -1 /* Stop extensions */
54};
55asn1_TYPE_descriptor_t asn1_DEF_T1 = {
56 "T1",
Lev Walkina9cc46e2004-09-22 16:06:28 +000057 SEQUENCE_free,
58 SEQUENCE_print,
Lev Walkinb9189732004-09-10 09:37:12 +000059 SEQUENCE_constraint,
60 SEQUENCE_decode_ber,
61 SEQUENCE_encode_der,
Lev Walkina9cc46e2004-09-22 16:06:28 +000062 0, /* Not implemented yet */
63 SEQUENCE_encode_xer,
Lev Walkinb9189732004-09-10 09:37:12 +000064 0, /* Use generic outmost tag fetcher */
65 asn1_DEF_T1_tags,
66 sizeof(asn1_DEF_T1_tags)
67 /sizeof(asn1_DEF_T1_tags[0]), /* 1 */
Lev Walkin188ed2c2004-09-13 08:31:01 +000068 asn1_DEF_T1_tags, /* Same as above */
69 sizeof(asn1_DEF_T1_tags)
70 /sizeof(asn1_DEF_T1_tags[0]), /* 1 */
Lev Walkinb9189732004-09-10 09:37:12 +000071 asn1_MBR_T1,
72 2, /* Elements count */
73 &asn1_DEF_T1_specs /* Additional specs */
74};
75
76
77/*** <<< INCLUDES [T2] >>> ***/
78
79#include <INTEGER.h>
80#include <ANY.h>
81#include <constr_SEQUENCE.h>
82
83/*** <<< DEPS [T2] >>> ***/
84
85extern asn1_TYPE_descriptor_t asn1_DEF_T2;
86
87/*** <<< TYPE-DECLS [T2] >>> ***/
88
89
90typedef struct T2 {
91 INTEGER_t i;
92 ANY_t *any /* OPTIONAL */;
93
94 /* Context for parsing across buffer boundaries */
95 ber_dec_ctx_t _ber_dec_ctx;
96} T2_t;
97
98/*** <<< STAT-DEFS [T2] >>> ***/
99
100static asn1_TYPE_member_t asn1_MBR_T2[] = {
101 { ATF_NOFLAGS, 0, offsetof(struct T2, i),
102 .tag = (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
103 .tag_mode = 0,
104 .type = (void *)&asn1_DEF_INTEGER,
105 .memb_constraints = 0, /* Defer to actual type */
106 .name = "i"
107 },
108 { ATF_POINTER, 1, offsetof(struct T2, any),
109 .tag = (ASN_TAG_CLASS_CONTEXT | (0 << 2)),
110 .tag_mode = +1, /* EXPLICIT tag at current level */
111 .type = (void *)&asn1_DEF_ANY,
112 .memb_constraints = 0, /* Defer to actual type */
113 .name = "any"
114 },
115};
116static ber_tlv_tag_t asn1_DEF_T2_tags[] = {
117 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
118};
119static asn1_TYPE_tag2member_t asn1_DEF_T2_tag2el[] = {
120 { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 0 }, /* i at 20 */
121 { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 1, 0, 0 }, /* any at 21 */
122};
123static asn1_SEQUENCE_specifics_t asn1_DEF_T2_specs = {
124 sizeof(struct T2),
125 offsetof(struct T2, _ber_dec_ctx),
126 asn1_DEF_T2_tag2el,
127 2, /* Count of tags in the map */
128 -1, /* Start extensions */
129 -1 /* Stop extensions */
130};
131asn1_TYPE_descriptor_t asn1_DEF_T2 = {
132 "T2",
Lev Walkina9cc46e2004-09-22 16:06:28 +0000133 SEQUENCE_free,
134 SEQUENCE_print,
Lev Walkinb9189732004-09-10 09:37:12 +0000135 SEQUENCE_constraint,
136 SEQUENCE_decode_ber,
137 SEQUENCE_encode_der,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000138 0, /* Not implemented yet */
139 SEQUENCE_encode_xer,
Lev Walkinb9189732004-09-10 09:37:12 +0000140 0, /* Use generic outmost tag fetcher */
141 asn1_DEF_T2_tags,
142 sizeof(asn1_DEF_T2_tags)
143 /sizeof(asn1_DEF_T2_tags[0]), /* 1 */
Lev Walkin188ed2c2004-09-13 08:31:01 +0000144 asn1_DEF_T2_tags, /* Same as above */
145 sizeof(asn1_DEF_T2_tags)
146 /sizeof(asn1_DEF_T2_tags[0]), /* 1 */
Lev Walkinb9189732004-09-10 09:37:12 +0000147 asn1_MBR_T2,
148 2, /* Elements count */
149 &asn1_DEF_T2_specs /* Additional specs */
150};
151