blob: 37533f006a0a5ec905f3c2bfb31c7c9feeb35964 [file] [log] [blame]
vlm7b9a7682004-08-22 03:18:17 +00001
2/*** <<< INCLUDES [Forest] >>> ***/
3
4#include <Tree.h>
5#include <asn_SET_OF.h>
6#include <constr_SET_OF.h>
7
8/*** <<< DEPS [Forest] >>> ***/
9
vlm02296432004-09-29 13:19:37 +000010extern asn_TYPE_descriptor_t asn_DEF_Forest;
vlm7b9a7682004-08-22 03:18:17 +000011
12/*** <<< TYPE-DECLS [Forest] >>> ***/
13
14
15typedef struct Forest {
vlmb47f48e2004-09-17 06:32:12 +000016 A_SET_OF(Tree_t) list;
vlm7b9a7682004-08-22 03:18:17 +000017
18 /* Context for parsing across buffer boundaries */
vlm02296432004-09-29 13:19:37 +000019 asn_struct_ctx_t _asn_ctx;
vlm7b9a7682004-08-22 03:18:17 +000020} Forest_t;
21
22/*** <<< STAT-DEFS [Forest] >>> ***/
23
vlm02296432004-09-29 13:19:37 +000024static asn_TYPE_member_t asn_MBR_Forest[] = {
vlmddd5a7d2004-09-10 09:18:20 +000025 { ATF_NOFLAGS, 0, 0,
vlm7b9a7682004-08-22 03:18:17 +000026 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
27 .tag_mode = 0,
vlm02296432004-09-29 13:19:37 +000028 .type = (void *)&asn_DEF_Tree,
vlm7b9a7682004-08-22 03:18:17 +000029 .memb_constraints = 0, /* Defer to actual type */
30 .name = ""
31 },
32};
vlm02296432004-09-29 13:19:37 +000033static ber_tlv_tag_t asn_DEF_Forest_tags[] = {
vlm7b9a7682004-08-22 03:18:17 +000034 (ASN_TAG_CLASS_UNIVERSAL | (17 << 2))
35};
vlm02296432004-09-29 13:19:37 +000036static asn_SET_OF_specifics_t asn_DEF_Forest_specs = {
vlm7b9a7682004-08-22 03:18:17 +000037 sizeof(struct Forest),
vlm02296432004-09-29 13:19:37 +000038 offsetof(struct Forest, _asn_ctx),
vlm39ba4c42004-09-22 16:06:28 +000039 0, /* XER encoding is XMLDelimitedItemList */
vlm7b9a7682004-08-22 03:18:17 +000040};
vlm02296432004-09-29 13:19:37 +000041asn_TYPE_descriptor_t asn_DEF_Forest = {
vlm7b9a7682004-08-22 03:18:17 +000042 "Forest",
vlm39ba4c42004-09-22 16:06:28 +000043 SET_OF_free,
44 SET_OF_print,
vlm7b9a7682004-08-22 03:18:17 +000045 SET_OF_constraint,
46 SET_OF_decode_ber,
47 SET_OF_encode_der,
vlm39ba4c42004-09-22 16:06:28 +000048 0, /* Not implemented yet */
49 SET_OF_encode_xer,
vlm7b9a7682004-08-22 03:18:17 +000050 0, /* Use generic outmost tag fetcher */
vlm02296432004-09-29 13:19:37 +000051 asn_DEF_Forest_tags,
52 sizeof(asn_DEF_Forest_tags)
53 /sizeof(asn_DEF_Forest_tags[0]), /* 1 */
54 asn_DEF_Forest_tags, /* Same as above */
55 sizeof(asn_DEF_Forest_tags)
56 /sizeof(asn_DEF_Forest_tags[0]), /* 1 */
57 asn_MBR_Forest,
vlm7b9a7682004-08-22 03:18:17 +000058 1, /* Single element */
vlm02296432004-09-29 13:19:37 +000059 &asn_DEF_Forest_specs /* Additional specs */
vlm7b9a7682004-08-22 03:18:17 +000060};
61
62
63/*** <<< INCLUDES [Tree] >>> ***/
64
65#include <INTEGER.h>
66#include <constr_SEQUENCE.h>
67
68/*** <<< DEPS [Tree] >>> ***/
69
vlm02296432004-09-29 13:19:37 +000070extern asn_TYPE_descriptor_t asn_DEF_Tree;
vlm7b9a7682004-08-22 03:18:17 +000071
72/*** <<< TYPE-DECLS [Tree] >>> ***/
73
74
75typedef struct Tree {
76 INTEGER_t height;
77 INTEGER_t width;
78
79 /* Context for parsing across buffer boundaries */
vlm02296432004-09-29 13:19:37 +000080 asn_struct_ctx_t _asn_ctx;
vlm7b9a7682004-08-22 03:18:17 +000081} Tree_t;
82
83/*** <<< STAT-DEFS [Tree] >>> ***/
84
vlm02296432004-09-29 13:19:37 +000085static asn_TYPE_member_t asn_MBR_Tree[] = {
vlmddd5a7d2004-09-10 09:18:20 +000086 { ATF_NOFLAGS, 0, offsetof(struct Tree, height),
vlm7b9a7682004-08-22 03:18:17 +000087 .tag = (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
88 .tag_mode = 0,
vlm02296432004-09-29 13:19:37 +000089 .type = (void *)&asn_DEF_INTEGER,
vlm7b9a7682004-08-22 03:18:17 +000090 .memb_constraints = 0, /* Defer to actual type */
91 .name = "height"
92 },
vlmddd5a7d2004-09-10 09:18:20 +000093 { ATF_NOFLAGS, 0, offsetof(struct Tree, width),
vlm7b9a7682004-08-22 03:18:17 +000094 .tag = (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)),
95 .tag_mode = 0,
vlm02296432004-09-29 13:19:37 +000096 .type = (void *)&asn_DEF_INTEGER,
vlm7b9a7682004-08-22 03:18:17 +000097 .memb_constraints = 0, /* Defer to actual type */
98 .name = "width"
99 },
100};
vlm02296432004-09-29 13:19:37 +0000101static ber_tlv_tag_t asn_DEF_Tree_tags[] = {
vlm7b9a7682004-08-22 03:18:17 +0000102 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
103};
vlm02296432004-09-29 13:19:37 +0000104static asn_TYPE_tag2member_t asn_DEF_Tree_tag2el[] = {
vlm7b9a7682004-08-22 03:18:17 +0000105 { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 0, 0, 1 }, /* height at 17 */
106 { (ASN_TAG_CLASS_UNIVERSAL | (2 << 2)), 1, -1, 0 }, /* width at 19 */
107};
vlm02296432004-09-29 13:19:37 +0000108static asn_SEQUENCE_specifics_t asn_DEF_Tree_specs = {
vlm7b9a7682004-08-22 03:18:17 +0000109 sizeof(struct Tree),
vlm02296432004-09-29 13:19:37 +0000110 offsetof(struct Tree, _asn_ctx),
111 asn_DEF_Tree_tag2el,
vlm7b9a7682004-08-22 03:18:17 +0000112 2, /* Count of tags in the map */
113 -1, /* Start extensions */
114 -1 /* Stop extensions */
115};
vlm02296432004-09-29 13:19:37 +0000116asn_TYPE_descriptor_t asn_DEF_Tree = {
vlm7b9a7682004-08-22 03:18:17 +0000117 "Tree",
vlm39ba4c42004-09-22 16:06:28 +0000118 SEQUENCE_free,
119 SEQUENCE_print,
vlm7b9a7682004-08-22 03:18:17 +0000120 SEQUENCE_constraint,
121 SEQUENCE_decode_ber,
122 SEQUENCE_encode_der,
vlm39ba4c42004-09-22 16:06:28 +0000123 0, /* Not implemented yet */
124 SEQUENCE_encode_xer,
vlm7b9a7682004-08-22 03:18:17 +0000125 0, /* Use generic outmost tag fetcher */
vlm02296432004-09-29 13:19:37 +0000126 asn_DEF_Tree_tags,
127 sizeof(asn_DEF_Tree_tags)
128 /sizeof(asn_DEF_Tree_tags[0]), /* 1 */
129 asn_DEF_Tree_tags, /* Same as above */
130 sizeof(asn_DEF_Tree_tags)
131 /sizeof(asn_DEF_Tree_tags[0]), /* 1 */
132 asn_MBR_Tree,
vlm7b9a7682004-08-22 03:18:17 +0000133 2, /* Elements count */
vlm02296432004-09-29 13:19:37 +0000134 &asn_DEF_Tree_specs /* Additional specs */
vlm7b9a7682004-08-22 03:18:17 +0000135};
136
137
138/*** <<< INCLUDES [Stuff] >>> ***/
139
140#include <Forest.h>
141#include <asn_SET_OF.h>
142#include <constr_SET_OF.h>
143#include <BIT_STRING.h>
144#include <constr_SEQUENCE.h>
145#include <constr_SET.h>
146
147/*** <<< DEPS [Stuff] >>> ***/
148
149
150/*
151 * Method of determining the components presence
152 */
153typedef enum Stuff_PR {
154 Stuff_PR_trees, /* Member trees is present */
155 Stuff_PR_anything, /* Member anything is present */
156} Stuff_PR;
vlm02296432004-09-29 13:19:37 +0000157extern asn_TYPE_descriptor_t asn_DEF_Stuff;
vlm7b9a7682004-08-22 03:18:17 +0000158
159/*** <<< TYPE-DECLS [Stuff] >>> ***/
160
161
162typedef struct Stuff {
163 struct trees {
vlmb47f48e2004-09-17 06:32:12 +0000164 A_SET_OF(Forest_t) list;
vlm7b9a7682004-08-22 03:18:17 +0000165
166 /* Context for parsing across buffer boundaries */
vlm02296432004-09-29 13:19:37 +0000167 asn_struct_ctx_t _asn_ctx;
vlm7b9a7682004-08-22 03:18:17 +0000168 } *trees;
169 struct anything {
170 A_SET_OF(struct anything_member {
171 BIT_STRING_t cup_of_coffee;
172 /*
173 * This type is extensible,
174 * possible extensions are below.
175 */
176
177 /* Context for parsing across buffer boundaries */
vlm02296432004-09-29 13:19:37 +0000178 asn_struct_ctx_t _asn_ctx;
vlm7b9a7682004-08-22 03:18:17 +0000179 } ) list;
180
181 /* Context for parsing across buffer boundaries */
vlm02296432004-09-29 13:19:37 +0000182 asn_struct_ctx_t _asn_ctx;
vlm7b9a7682004-08-22 03:18:17 +0000183 } *anything;
184
185 /* Presence bitmask: ASN_SET_ISPRESENT(pStuff, Stuff_PR_x) */
186 unsigned int _presence_map
187 [((2+(8*sizeof(unsigned int))-1)/(8*sizeof(unsigned int)))];
188
189 /* Context for parsing across buffer boundaries */
vlm02296432004-09-29 13:19:37 +0000190 asn_struct_ctx_t _asn_ctx;
vlm7b9a7682004-08-22 03:18:17 +0000191} Stuff_t;
192
193/*** <<< STAT-DEFS [Stuff] >>> ***/
194
vlm02296432004-09-29 13:19:37 +0000195static asn_TYPE_member_t asn_MBR_trees[] = {
vlmddd5a7d2004-09-10 09:18:20 +0000196 { ATF_NOFLAGS, 0, 0,
vlm7b9a7682004-08-22 03:18:17 +0000197 .tag = (ASN_TAG_CLASS_UNIVERSAL | (17 << 2)),
198 .tag_mode = 0,
vlm02296432004-09-29 13:19:37 +0000199 .type = (void *)&asn_DEF_Forest,
vlm7b9a7682004-08-22 03:18:17 +0000200 .memb_constraints = 0, /* Defer to actual type */
201 .name = ""
202 },
203};
vlm02296432004-09-29 13:19:37 +0000204static ber_tlv_tag_t asn_DEF_trees_tags[] = {
vlm72425de2004-09-13 08:31:01 +0000205 (ASN_TAG_CLASS_CONTEXT | (0 << 2)),
206 (ASN_TAG_CLASS_UNIVERSAL | (17 << 2))
vlm7b9a7682004-08-22 03:18:17 +0000207};
vlm02296432004-09-29 13:19:37 +0000208static asn_SET_OF_specifics_t asn_DEF_trees_specs = {
vlm7b9a7682004-08-22 03:18:17 +0000209 sizeof(struct trees),
vlm02296432004-09-29 13:19:37 +0000210 offsetof(struct trees, _asn_ctx),
vlm39ba4c42004-09-22 16:06:28 +0000211 0, /* XER encoding is XMLDelimitedItemList */
vlm7b9a7682004-08-22 03:18:17 +0000212};
vlm1dc848e2004-09-07 06:44:29 +0000213static /* Use -fall-defs-global to expose */
vlm02296432004-09-29 13:19:37 +0000214asn_TYPE_descriptor_t asn_DEF_trees = {
vlm7b9a7682004-08-22 03:18:17 +0000215 "trees",
vlm39ba4c42004-09-22 16:06:28 +0000216 SET_OF_free,
217 SET_OF_print,
vlm7b9a7682004-08-22 03:18:17 +0000218 SET_OF_constraint,
219 SET_OF_decode_ber,
220 SET_OF_encode_der,
vlm39ba4c42004-09-22 16:06:28 +0000221 0, /* Not implemented yet */
222 SET_OF_encode_xer,
vlm7b9a7682004-08-22 03:18:17 +0000223 0, /* Use generic outmost tag fetcher */
vlm02296432004-09-29 13:19:37 +0000224 asn_DEF_trees_tags,
225 sizeof(asn_DEF_trees_tags)
226 /sizeof(asn_DEF_trees_tags[0]) - 1, /* 1 */
227 asn_DEF_trees_tags, /* Same as above */
228 sizeof(asn_DEF_trees_tags)
229 /sizeof(asn_DEF_trees_tags[0]), /* 2 */
230 asn_MBR_trees,
vlm7b9a7682004-08-22 03:18:17 +0000231 1, /* Single element */
vlm02296432004-09-29 13:19:37 +0000232 &asn_DEF_trees_specs /* Additional specs */
vlm7b9a7682004-08-22 03:18:17 +0000233};
234
vlm02296432004-09-29 13:19:37 +0000235static asn_TYPE_member_t asn_MBR_anything_member[] = {
vlmddd5a7d2004-09-10 09:18:20 +0000236 { ATF_NOFLAGS, 0, offsetof(struct anything_member, cup_of_coffee),
vlm7b9a7682004-08-22 03:18:17 +0000237 .tag = (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)),
238 .tag_mode = 0,
vlm02296432004-09-29 13:19:37 +0000239 .type = (void *)&asn_DEF_BIT_STRING,
vlm7b9a7682004-08-22 03:18:17 +0000240 .memb_constraints = 0, /* Defer to actual type */
241 .name = "cup-of-coffee"
242 },
243};
vlm02296432004-09-29 13:19:37 +0000244static ber_tlv_tag_t asn_DEF_anything_member_tags[] = {
vlm7b9a7682004-08-22 03:18:17 +0000245 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
246};
vlm02296432004-09-29 13:19:37 +0000247static asn_TYPE_tag2member_t asn_DEF_anything_member_tag2el[] = {
vlm7b9a7682004-08-22 03:18:17 +0000248 { (ASN_TAG_CLASS_UNIVERSAL | (3 << 2)), 0, 0, 0 }, /* cup-of-coffee at 26 */
249};
vlm02296432004-09-29 13:19:37 +0000250static asn_SEQUENCE_specifics_t asn_DEF_anything_member_specs = {
vlm7b9a7682004-08-22 03:18:17 +0000251 sizeof(struct anything_member),
vlm02296432004-09-29 13:19:37 +0000252 offsetof(struct anything_member, _asn_ctx),
253 asn_DEF_anything_member_tag2el,
vlm7b9a7682004-08-22 03:18:17 +0000254 1, /* Count of tags in the map */
255 0, /* Start extensions */
256 2 /* Stop extensions */
257};
vlm1dc848e2004-09-07 06:44:29 +0000258static /* Use -fall-defs-global to expose */
vlm02296432004-09-29 13:19:37 +0000259asn_TYPE_descriptor_t asn_DEF_anything_member = {
vlm7b9a7682004-08-22 03:18:17 +0000260 "",
vlm39ba4c42004-09-22 16:06:28 +0000261 SEQUENCE_free,
262 SEQUENCE_print,
vlm7b9a7682004-08-22 03:18:17 +0000263 SEQUENCE_constraint,
264 SEQUENCE_decode_ber,
265 SEQUENCE_encode_der,
vlm39ba4c42004-09-22 16:06:28 +0000266 0, /* Not implemented yet */
267 SEQUENCE_encode_xer,
vlm7b9a7682004-08-22 03:18:17 +0000268 0, /* Use generic outmost tag fetcher */
vlm02296432004-09-29 13:19:37 +0000269 asn_DEF_anything_member_tags,
270 sizeof(asn_DEF_anything_member_tags)
271 /sizeof(asn_DEF_anything_member_tags[0]), /* 1 */
272 asn_DEF_anything_member_tags, /* Same as above */
273 sizeof(asn_DEF_anything_member_tags)
274 /sizeof(asn_DEF_anything_member_tags[0]), /* 1 */
275 asn_MBR_anything_member,
vlm7b9a7682004-08-22 03:18:17 +0000276 1, /* Elements count */
vlm02296432004-09-29 13:19:37 +0000277 &asn_DEF_anything_member_specs /* Additional specs */
vlm7b9a7682004-08-22 03:18:17 +0000278};
279
vlm02296432004-09-29 13:19:37 +0000280static asn_TYPE_member_t asn_MBR_anything[] = {
vlmddd5a7d2004-09-10 09:18:20 +0000281 { ATF_NOFLAGS, 0, 0,
vlm7b9a7682004-08-22 03:18:17 +0000282 .tag = (ASN_TAG_CLASS_UNIVERSAL | (16 << 2)),
283 .tag_mode = 0,
vlm02296432004-09-29 13:19:37 +0000284 .type = (void *)&asn_DEF_anything_member,
vlm7b9a7682004-08-22 03:18:17 +0000285 .memb_constraints = 0, /* Defer to actual type */
286 .name = ""
287 },
288};
vlm02296432004-09-29 13:19:37 +0000289static ber_tlv_tag_t asn_DEF_anything_tags[] = {
vlm72425de2004-09-13 08:31:01 +0000290 (ASN_TAG_CLASS_CONTEXT | (1 << 2)),
291 (ASN_TAG_CLASS_UNIVERSAL | (17 << 2))
vlm7b9a7682004-08-22 03:18:17 +0000292};
vlm02296432004-09-29 13:19:37 +0000293static asn_SET_OF_specifics_t asn_DEF_anything_specs = {
vlm7b9a7682004-08-22 03:18:17 +0000294 sizeof(struct anything),
vlm02296432004-09-29 13:19:37 +0000295 offsetof(struct anything, _asn_ctx),
vlm39ba4c42004-09-22 16:06:28 +0000296 0, /* XER encoding is XMLDelimitedItemList */
vlm7b9a7682004-08-22 03:18:17 +0000297};
vlm1dc848e2004-09-07 06:44:29 +0000298static /* Use -fall-defs-global to expose */
vlm02296432004-09-29 13:19:37 +0000299asn_TYPE_descriptor_t asn_DEF_anything = {
vlm7b9a7682004-08-22 03:18:17 +0000300 "anything",
vlm39ba4c42004-09-22 16:06:28 +0000301 SET_OF_free,
302 SET_OF_print,
vlm7b9a7682004-08-22 03:18:17 +0000303 SET_OF_constraint,
304 SET_OF_decode_ber,
305 SET_OF_encode_der,
vlm39ba4c42004-09-22 16:06:28 +0000306 0, /* Not implemented yet */
307 SET_OF_encode_xer,
vlm7b9a7682004-08-22 03:18:17 +0000308 0, /* Use generic outmost tag fetcher */
vlm02296432004-09-29 13:19:37 +0000309 asn_DEF_anything_tags,
310 sizeof(asn_DEF_anything_tags)
311 /sizeof(asn_DEF_anything_tags[0]) - 1, /* 1 */
312 asn_DEF_anything_tags, /* Same as above */
313 sizeof(asn_DEF_anything_tags)
314 /sizeof(asn_DEF_anything_tags[0]), /* 2 */
315 asn_MBR_anything,
vlm7b9a7682004-08-22 03:18:17 +0000316 1, /* Single element */
vlm02296432004-09-29 13:19:37 +0000317 &asn_DEF_anything_specs /* Additional specs */
vlm7b9a7682004-08-22 03:18:17 +0000318};
319
vlm02296432004-09-29 13:19:37 +0000320static asn_TYPE_member_t asn_MBR_Stuff[] = {
vlmddd5a7d2004-09-10 09:18:20 +0000321 { ATF_POINTER, 2, offsetof(struct Stuff, trees),
vlm7b9a7682004-08-22 03:18:17 +0000322 .tag = (ASN_TAG_CLASS_CONTEXT | (0 << 2)),
323 .tag_mode = -1, /* IMPLICIT tag at current level */
vlm02296432004-09-29 13:19:37 +0000324 .type = (void *)&asn_DEF_trees,
vlm7b9a7682004-08-22 03:18:17 +0000325 .memb_constraints = 0, /* Defer to actual type */
326 .name = "trees"
327 },
vlmddd5a7d2004-09-10 09:18:20 +0000328 { ATF_POINTER, 1, offsetof(struct Stuff, anything),
vlm7b9a7682004-08-22 03:18:17 +0000329 .tag = (ASN_TAG_CLASS_CONTEXT | (1 << 2)),
330 .tag_mode = -1, /* IMPLICIT tag at current level */
vlm02296432004-09-29 13:19:37 +0000331 .type = (void *)&asn_DEF_anything,
vlm7b9a7682004-08-22 03:18:17 +0000332 .memb_constraints = 0, /* Defer to actual type */
333 .name = "anything"
334 },
335};
vlm02296432004-09-29 13:19:37 +0000336static ber_tlv_tag_t asn_DEF_Stuff_tags[] = {
vlm7b9a7682004-08-22 03:18:17 +0000337 (ASN_TAG_CLASS_UNIVERSAL | (17 << 2))
338};
vlm02296432004-09-29 13:19:37 +0000339static asn_TYPE_tag2member_t asn_DEF_Stuff_tag2el[] = {
vlm7b9a7682004-08-22 03:18:17 +0000340 { (ASN_TAG_CLASS_CONTEXT | (0 << 2)), 0, 0, 0 }, /* trees at 23 */
341 { (ASN_TAG_CLASS_CONTEXT | (1 << 2)), 1, 0, 0 }, /* anything at 28 */
342};
vlm02296432004-09-29 13:19:37 +0000343static uint8_t asn_DEF_Stuff_mmap[(2 + (8 * sizeof(unsigned int)) - 1) / 8] = {
vlm7b9a7682004-08-22 03:18:17 +0000344 (0 << 7) | (0 << 6)
345};
vlm02296432004-09-29 13:19:37 +0000346static asn_SET_specifics_t asn_DEF_Stuff_specs = {
vlm7b9a7682004-08-22 03:18:17 +0000347 sizeof(struct Stuff),
vlm02296432004-09-29 13:19:37 +0000348 offsetof(struct Stuff, _asn_ctx),
vlm7b9a7682004-08-22 03:18:17 +0000349 offsetof(struct Stuff, _presence_map),
vlm02296432004-09-29 13:19:37 +0000350 asn_DEF_Stuff_tag2el,
vlm7b9a7682004-08-22 03:18:17 +0000351 2, /* Count of tags in the map */
352 0, /* Whether extensible */
vlm02296432004-09-29 13:19:37 +0000353 (unsigned int *)asn_DEF_Stuff_mmap /* Mandatory elements map */
vlm7b9a7682004-08-22 03:18:17 +0000354};
vlm02296432004-09-29 13:19:37 +0000355asn_TYPE_descriptor_t asn_DEF_Stuff = {
vlm7b9a7682004-08-22 03:18:17 +0000356 "Stuff",
vlm39ba4c42004-09-22 16:06:28 +0000357 SET_free,
358 SET_print,
vlm7b9a7682004-08-22 03:18:17 +0000359 SET_constraint,
360 SET_decode_ber,
361 SET_encode_der,
vlm39ba4c42004-09-22 16:06:28 +0000362 0, /* Not implemented yet */
363 SET_encode_xer,
vlm7b9a7682004-08-22 03:18:17 +0000364 0, /* Use generic outmost tag fetcher */
vlm02296432004-09-29 13:19:37 +0000365 asn_DEF_Stuff_tags,
366 sizeof(asn_DEF_Stuff_tags)
367 /sizeof(asn_DEF_Stuff_tags[0]), /* 1 */
368 asn_DEF_Stuff_tags, /* Same as above */
369 sizeof(asn_DEF_Stuff_tags)
370 /sizeof(asn_DEF_Stuff_tags[0]), /* 1 */
371 asn_MBR_Stuff,
vlm7b9a7682004-08-22 03:18:17 +0000372 2, /* Elements count */
vlm02296432004-09-29 13:19:37 +0000373 &asn_DEF_Stuff_specs /* Additional specs */
vlm7b9a7682004-08-22 03:18:17 +0000374};
375