blob: e4a98077d57af9594de1e131a6854cb77604f1f0 [file] [log] [blame]
Lev Walkin5bbff1e2004-06-28 21:13:22 +00001
Lev Walkinb47ddce2004-08-11 05:25:47 +00002/*** <<< INCLUDES [PrimitiveType] >>> ***/
Lev Walkin5bbff1e2004-06-28 21:13:22 +00003
4#include <OCTET_STRING.h>
5
6/*** <<< TYPE-DECLS [PrimitiveType] >>> ***/
7
Lev Walkin5bbff1e2004-06-28 21:13:22 +00008typedef OCTET_STRING_t PrimitiveType_t;
9
Lev Walkin5bbff1e2004-06-28 21:13:22 +000010/*** <<< FUNC-DECLS [PrimitiveType] >>> ***/
11
Lev Walkincaf0d5a2005-03-04 23:48:19 +000012extern asn_TYPE_descriptor_t asn_DEF_PrimitiveType;
13asn_struct_free_f PrimitiveType_free;
14asn_struct_print_f PrimitiveType_print;
15asn_constr_check_f PrimitiveType_constraint;
16ber_type_decoder_f PrimitiveType_decode_ber;
17der_type_encoder_f PrimitiveType_encode_der;
18xer_type_decoder_f PrimitiveType_decode_xer;
19xer_type_encoder_f PrimitiveType_encode_xer;
Lev Walkin5bbff1e2004-06-28 21:13:22 +000020
Lev Walkin2e3055d2004-08-20 13:36:32 +000021/*** <<< CODE [PrimitiveType] >>> ***/
22
Lev Walkincaf0d5a2005-03-04 23:48:19 +000023int
24PrimitiveType_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +000025 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkincaf0d5a2005-03-04 23:48:19 +000026 /* Replace with underlying type checker */
27 td->check_constraints = asn_DEF_OCTET_STRING.check_constraints;
Lev Walkin1eded352006-07-13 11:19:01 +000028 return td->check_constraints(td, sptr, ctfailcb, app_key);
Lev Walkincaf0d5a2005-03-04 23:48:19 +000029}
30
31/*
32 * This type is implemented using OCTET_STRING,
33 * so here we adjust the DEF accordingly.
34 */
35static void
Lev Walkine8318b82005-03-06 09:29:03 +000036PrimitiveType_1_inherit_TYPE_descriptor(asn_TYPE_descriptor_t *td) {
Lev Walkincaf0d5a2005-03-04 23:48:19 +000037 td->free_struct = asn_DEF_OCTET_STRING.free_struct;
38 td->print_struct = asn_DEF_OCTET_STRING.print_struct;
Lev Walkin6169b8d2013-12-07 11:02:44 -080039 td->check_constraints = asn_DEF_OCTET_STRING.check_constraints;
Lev Walkincaf0d5a2005-03-04 23:48:19 +000040 td->ber_decoder = asn_DEF_OCTET_STRING.ber_decoder;
41 td->der_encoder = asn_DEF_OCTET_STRING.der_encoder;
42 td->xer_decoder = asn_DEF_OCTET_STRING.xer_decoder;
43 td->xer_encoder = asn_DEF_OCTET_STRING.xer_encoder;
Lev Walkin59b176e2005-11-26 11:25:14 +000044 td->uper_decoder = asn_DEF_OCTET_STRING.uper_decoder;
Lev Walkin9f5bb3a2006-08-18 01:46:46 +000045 td->uper_encoder = asn_DEF_OCTET_STRING.uper_encoder;
Lev Walkin59b176e2005-11-26 11:25:14 +000046 if(!td->per_constraints)
47 td->per_constraints = asn_DEF_OCTET_STRING.per_constraints;
Lev Walkincaf0d5a2005-03-04 23:48:19 +000048 td->elements = asn_DEF_OCTET_STRING.elements;
49 td->elements_count = asn_DEF_OCTET_STRING.elements_count;
50 td->specifics = asn_DEF_OCTET_STRING.specifics;
51}
52
53void
54PrimitiveType_free(asn_TYPE_descriptor_t *td,
55 void *struct_ptr, int contents_only) {
Lev Walkine8318b82005-03-06 09:29:03 +000056 PrimitiveType_1_inherit_TYPE_descriptor(td);
Lev Walkincaf0d5a2005-03-04 23:48:19 +000057 td->free_struct(td, struct_ptr, contents_only);
58}
59
60int
61PrimitiveType_print(asn_TYPE_descriptor_t *td, const void *struct_ptr,
62 int ilevel, asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine8318b82005-03-06 09:29:03 +000063 PrimitiveType_1_inherit_TYPE_descriptor(td);
Lev Walkincaf0d5a2005-03-04 23:48:19 +000064 return td->print_struct(td, struct_ptr, ilevel, cb, app_key);
65}
66
67asn_dec_rval_t
68PrimitiveType_decode_ber(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
Lev Walkin3ebc65a2005-03-17 21:57:19 +000069 void **structure, const void *bufptr, size_t size, int tag_mode) {
Lev Walkine8318b82005-03-06 09:29:03 +000070 PrimitiveType_1_inherit_TYPE_descriptor(td);
Lev Walkincaf0d5a2005-03-04 23:48:19 +000071 return td->ber_decoder(opt_codec_ctx, td, structure, bufptr, size, tag_mode);
72}
73
74asn_enc_rval_t
75PrimitiveType_encode_der(asn_TYPE_descriptor_t *td,
76 void *structure, int tag_mode, ber_tlv_tag_t tag,
77 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine8318b82005-03-06 09:29:03 +000078 PrimitiveType_1_inherit_TYPE_descriptor(td);
Lev Walkincaf0d5a2005-03-04 23:48:19 +000079 return td->der_encoder(td, structure, tag_mode, tag, cb, app_key);
80}
81
82asn_dec_rval_t
83PrimitiveType_decode_xer(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
Lev Walkin3ebc65a2005-03-17 21:57:19 +000084 void **structure, const char *opt_mname, const void *bufptr, size_t size) {
Lev Walkine8318b82005-03-06 09:29:03 +000085 PrimitiveType_1_inherit_TYPE_descriptor(td);
Lev Walkincaf0d5a2005-03-04 23:48:19 +000086 return td->xer_decoder(opt_codec_ctx, td, structure, opt_mname, bufptr, size);
87}
88
89asn_enc_rval_t
90PrimitiveType_encode_xer(asn_TYPE_descriptor_t *td, void *structure,
91 int ilevel, enum xer_encoder_flags_e flags,
92 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine8318b82005-03-06 09:29:03 +000093 PrimitiveType_1_inherit_TYPE_descriptor(td);
Lev Walkincaf0d5a2005-03-04 23:48:19 +000094 return td->xer_encoder(td, structure, ilevel, flags, cb, app_key);
95}
96
97
98/*** <<< STAT-DEFS [PrimitiveType] >>> ***/
99
Lev Walkin59b176e2005-11-26 11:25:14 +0000100static ber_tlv_tag_t asn_DEF_PrimitiveType_tags_1[] = {
Lev Walkincaf0d5a2005-03-04 23:48:19 +0000101 (ASN_TAG_CLASS_UNIVERSAL | (4 << 2))
102};
103asn_TYPE_descriptor_t asn_DEF_PrimitiveType = {
104 "PrimitiveType",
105 "PrimitiveType",
106 PrimitiveType_free,
107 PrimitiveType_print,
108 PrimitiveType_constraint,
109 PrimitiveType_decode_ber,
110 PrimitiveType_encode_der,
111 PrimitiveType_decode_xer,
112 PrimitiveType_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000113 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkincaf0d5a2005-03-04 23:48:19 +0000114 0, /* Use generic outmost tag fetcher */
Lev Walkin59b176e2005-11-26 11:25:14 +0000115 asn_DEF_PrimitiveType_tags_1,
116 sizeof(asn_DEF_PrimitiveType_tags_1)
117 /sizeof(asn_DEF_PrimitiveType_tags_1[0]), /* 1 */
118 asn_DEF_PrimitiveType_tags_1, /* Same as above */
119 sizeof(asn_DEF_PrimitiveType_tags_1)
120 /sizeof(asn_DEF_PrimitiveType_tags_1[0]), /* 1 */
121 0, /* No PER visible constraints */
Lev Walkincaf0d5a2005-03-04 23:48:19 +0000122 0, 0, /* No members */
123 0 /* No specifics */
124};
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000125
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000126
Lev Walkinb47ddce2004-08-11 05:25:47 +0000127/*** <<< INCLUDES [ConstructedType] >>> ***/
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000128
Lev Walkin22b5ed42006-09-13 02:51:20 +0000129#include "PrimitiveType.h"
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000130#include <constr_SEQUENCE.h>
131
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000132/*** <<< TYPE-DECLS [ConstructedType] >>> ***/
133
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000134typedef struct ConstructedType {
135 PrimitiveType_t field;
136
137 /* Context for parsing across buffer boundaries */
Lev Walkindfae9752004-09-29 13:19:37 +0000138 asn_struct_ctx_t _asn_ctx;
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000139} ConstructedType_t;
140
Lev Walkinc8285712005-03-04 22:18:20 +0000141/*** <<< FUNC-DECLS [ConstructedType] >>> ***/
142
143extern asn_TYPE_descriptor_t asn_DEF_ConstructedType;
144
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000145/*** <<< STAT-DEFS [ConstructedType] >>> ***/
146
Lev Walkine0272aa2005-03-04 11:26:08 +0000147static asn_TYPE_member_t asn_MBR_ConstructedType_1[] = {
Lev Walkincc93b0f2004-09-10 09:18:20 +0000148 { ATF_NOFLAGS, 0, offsetof(struct ConstructedType, field),
Lev Walkin2e3055d2004-08-20 13:36:32 +0000149 .tag = (ASN_TAG_CLASS_CONTEXT | (5 << 2)),
150 .tag_mode = -1, /* IMPLICIT tag at current level */
Lev Walkinae7bf3f2005-08-29 10:31:14 +0000151 .type = &asn_DEF_PrimitiveType,
Lev Walkinba58e1b2005-01-17 12:20:19 +0000152 .memb_constraints = 0, /* Defer constraints checking to the member type */
Lev Walkin59b176e2005-11-26 11:25:14 +0000153 .per_constraints = 0, /* PER is not compiled, use -gen-PER */
154 .default_value = 0,
Lev Walkin2e3055d2004-08-20 13:36:32 +0000155 .name = "field"
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000156 },
157};
Lev Walkin59b176e2005-11-26 11:25:14 +0000158static ber_tlv_tag_t asn_DEF_ConstructedType_tags_1[] = {
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000159 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
160};
Lev Walkin59b176e2005-11-26 11:25:14 +0000161static asn_TYPE_tag2member_t asn_MAP_ConstructedType_tag2el_1[] = {
Lev Walkin4062b012013-10-11 14:29:38 -0700162 { (ASN_TAG_CLASS_CONTEXT | (5 << 2)), 0, 0, 0 } /* field */
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000163};
Lev Walkin59b176e2005-11-26 11:25:14 +0000164static asn_SEQUENCE_specifics_t asn_SPC_ConstructedType_specs_1 = {
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000165 sizeof(struct ConstructedType),
Lev Walkindfae9752004-09-29 13:19:37 +0000166 offsetof(struct ConstructedType, _asn_ctx),
Lev Walkin59b176e2005-11-26 11:25:14 +0000167 asn_MAP_ConstructedType_tag2el_1,
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000168 1, /* Count of tags in the map */
Lev Walkin59b176e2005-11-26 11:25:14 +0000169 0, 0, 0, /* Optional elements (not needed) */
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000170 -1, /* Start extensions */
171 -1 /* Stop extensions */
172};
Lev Walkindfae9752004-09-29 13:19:37 +0000173asn_TYPE_descriptor_t asn_DEF_ConstructedType = {
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000174 "ConstructedType",
Lev Walkindc06f6b2004-10-20 15:50:55 +0000175 "ConstructedType",
Lev Walkina9cc46e2004-09-22 16:06:28 +0000176 SEQUENCE_free,
177 SEQUENCE_print,
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000178 SEQUENCE_constraint,
179 SEQUENCE_decode_ber,
180 SEQUENCE_encode_der,
Lev Walkin61b40d82004-10-23 15:07:45 +0000181 SEQUENCE_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000182 SEQUENCE_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000183 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000184 0, /* Use generic outmost tag fetcher */
Lev Walkin59b176e2005-11-26 11:25:14 +0000185 asn_DEF_ConstructedType_tags_1,
186 sizeof(asn_DEF_ConstructedType_tags_1)
187 /sizeof(asn_DEF_ConstructedType_tags_1[0]), /* 1 */
188 asn_DEF_ConstructedType_tags_1, /* Same as above */
189 sizeof(asn_DEF_ConstructedType_tags_1)
190 /sizeof(asn_DEF_ConstructedType_tags_1[0]), /* 1 */
191 0, /* No PER visible constraints */
Lev Walkine0272aa2005-03-04 11:26:08 +0000192 asn_MBR_ConstructedType_1,
Lev Walkin2e3055d2004-08-20 13:36:32 +0000193 1, /* Elements count */
Lev Walkin59b176e2005-11-26 11:25:14 +0000194 &asn_SPC_ConstructedType_specs_1 /* Additional specs */
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000195};
196
197
Lev Walkinb47ddce2004-08-11 05:25:47 +0000198/*** <<< INCLUDES [T] >>> ***/
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000199
Lev Walkin22b5ed42006-09-13 02:51:20 +0000200#include "ConstructedType.h"
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000201
202/*** <<< TYPE-DECLS [T] >>> ***/
203
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000204typedef ConstructedType_t T_t;
205
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000206/*** <<< FUNC-DECLS [T] >>> ***/
207
Lev Walkindfae9752004-09-29 13:19:37 +0000208extern asn_TYPE_descriptor_t asn_DEF_T;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000209asn_struct_free_f T_free;
210asn_struct_print_f T_print;
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000211asn_constr_check_f T_constraint;
212ber_type_decoder_f T_decode_ber;
213der_type_encoder_f T_encode_der;
Lev Walkin0ebe8b32004-10-23 13:26:56 +0000214xer_type_decoder_f T_decode_xer;
Lev Walkina9cc46e2004-09-22 16:06:28 +0000215xer_type_encoder_f T_encode_xer;
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000216
Lev Walkin2e3055d2004-08-20 13:36:32 +0000217/*** <<< CODE [T] >>> ***/
218
219int
Lev Walkindfae9752004-09-29 13:19:37 +0000220T_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
Lev Walkin1eded352006-07-13 11:19:01 +0000221 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
Lev Walkin154aa182004-09-26 13:12:56 +0000222 /* Replace with underlying type checker */
Lev Walkindfae9752004-09-29 13:19:37 +0000223 td->check_constraints = asn_DEF_ConstructedType.check_constraints;
Lev Walkin1eded352006-07-13 11:19:01 +0000224 return td->check_constraints(td, sptr, ctfailcb, app_key);
Lev Walkin2e3055d2004-08-20 13:36:32 +0000225}
226
227/*
228 * This type is implemented using ConstructedType,
Lev Walkinc3808c12004-09-23 22:14:58 +0000229 * so here we adjust the DEF accordingly.
Lev Walkin2e3055d2004-08-20 13:36:32 +0000230 */
231static void
Lev Walkine8318b82005-03-06 09:29:03 +0000232T_1_inherit_TYPE_descriptor(asn_TYPE_descriptor_t *td) {
Lev Walkindfae9752004-09-29 13:19:37 +0000233 td->free_struct = asn_DEF_ConstructedType.free_struct;
234 td->print_struct = asn_DEF_ConstructedType.print_struct;
Lev Walkin6169b8d2013-12-07 11:02:44 -0800235 td->check_constraints = asn_DEF_ConstructedType.check_constraints;
Lev Walkindfae9752004-09-29 13:19:37 +0000236 td->ber_decoder = asn_DEF_ConstructedType.ber_decoder;
237 td->der_encoder = asn_DEF_ConstructedType.der_encoder;
238 td->xer_decoder = asn_DEF_ConstructedType.xer_decoder;
239 td->xer_encoder = asn_DEF_ConstructedType.xer_encoder;
Lev Walkin59b176e2005-11-26 11:25:14 +0000240 td->uper_decoder = asn_DEF_ConstructedType.uper_decoder;
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000241 td->uper_encoder = asn_DEF_ConstructedType.uper_encoder;
Lev Walkin59b176e2005-11-26 11:25:14 +0000242 if(!td->per_constraints)
243 td->per_constraints = asn_DEF_ConstructedType.per_constraints;
Lev Walkindfae9752004-09-29 13:19:37 +0000244 td->elements = asn_DEF_ConstructedType.elements;
245 td->elements_count = asn_DEF_ConstructedType.elements_count;
246 td->specifics = asn_DEF_ConstructedType.specifics;
Lev Walkin2e3055d2004-08-20 13:36:32 +0000247}
248
Lev Walkina9cc46e2004-09-22 16:06:28 +0000249void
Lev Walkindfae9752004-09-29 13:19:37 +0000250T_free(asn_TYPE_descriptor_t *td,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000251 void *struct_ptr, int contents_only) {
Lev Walkine8318b82005-03-06 09:29:03 +0000252 T_1_inherit_TYPE_descriptor(td);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000253 td->free_struct(td, struct_ptr, contents_only);
Lev Walkin2e3055d2004-08-20 13:36:32 +0000254}
255
256int
Lev Walkindfae9752004-09-29 13:19:37 +0000257T_print(asn_TYPE_descriptor_t *td, const void *struct_ptr,
Lev Walkin2e3055d2004-08-20 13:36:32 +0000258 int ilevel, asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine8318b82005-03-06 09:29:03 +0000259 T_1_inherit_TYPE_descriptor(td);
Lev Walkin2e3055d2004-08-20 13:36:32 +0000260 return td->print_struct(td, struct_ptr, ilevel, cb, app_key);
261}
262
Lev Walkindc06f6b2004-10-20 15:50:55 +0000263asn_dec_rval_t
Lev Walkindfae9752004-09-29 13:19:37 +0000264T_decode_ber(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
Lev Walkin3ebc65a2005-03-17 21:57:19 +0000265 void **structure, const void *bufptr, size_t size, int tag_mode) {
Lev Walkine8318b82005-03-06 09:29:03 +0000266 T_1_inherit_TYPE_descriptor(td);
Lev Walkindfae9752004-09-29 13:19:37 +0000267 return td->ber_decoder(opt_codec_ctx, td, structure, bufptr, size, tag_mode);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000268}
269
270asn_enc_rval_t
Lev Walkindfae9752004-09-29 13:19:37 +0000271T_encode_der(asn_TYPE_descriptor_t *td,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000272 void *structure, int tag_mode, ber_tlv_tag_t tag,
273 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine8318b82005-03-06 09:29:03 +0000274 T_1_inherit_TYPE_descriptor(td);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000275 return td->der_encoder(td, structure, tag_mode, tag, cb, app_key);
276}
277
Lev Walkin0ebe8b32004-10-23 13:26:56 +0000278asn_dec_rval_t
279T_decode_xer(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
Lev Walkin3ebc65a2005-03-17 21:57:19 +0000280 void **structure, const char *opt_mname, const void *bufptr, size_t size) {
Lev Walkine8318b82005-03-06 09:29:03 +0000281 T_1_inherit_TYPE_descriptor(td);
Lev Walkin0ebe8b32004-10-23 13:26:56 +0000282 return td->xer_decoder(opt_codec_ctx, td, structure, opt_mname, bufptr, size);
283}
284
Lev Walkina9cc46e2004-09-22 16:06:28 +0000285asn_enc_rval_t
Lev Walkindfae9752004-09-29 13:19:37 +0000286T_encode_xer(asn_TYPE_descriptor_t *td, void *structure,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000287 int ilevel, enum xer_encoder_flags_e flags,
288 asn_app_consume_bytes_f *cb, void *app_key) {
Lev Walkine8318b82005-03-06 09:29:03 +0000289 T_1_inherit_TYPE_descriptor(td);
Lev Walkina9cc46e2004-09-22 16:06:28 +0000290 return td->xer_encoder(td, structure, ilevel, flags, cb, app_key);
Lev Walkin2e3055d2004-08-20 13:36:32 +0000291}
292
293
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000294/*** <<< STAT-DEFS [T] >>> ***/
295
Lev Walkin59b176e2005-11-26 11:25:14 +0000296static ber_tlv_tag_t asn_DEF_T_tags_1[] = {
Lev Walkin188ed2c2004-09-13 08:31:01 +0000297 (ASN_TAG_CLASS_CONTEXT | (3 << 2)),
298 (ASN_TAG_CLASS_UNIVERSAL | (16 << 2))
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000299};
Lev Walkindfae9752004-09-29 13:19:37 +0000300asn_TYPE_descriptor_t asn_DEF_T = {
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000301 "T",
Lev Walkindc06f6b2004-10-20 15:50:55 +0000302 "T",
Lev Walkina9cc46e2004-09-22 16:06:28 +0000303 T_free,
304 T_print,
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000305 T_constraint,
306 T_decode_ber,
307 T_encode_der,
Lev Walkin0ebe8b32004-10-23 13:26:56 +0000308 T_decode_xer,
Lev Walkina9cc46e2004-09-22 16:06:28 +0000309 T_encode_xer,
Lev Walkin9f5bb3a2006-08-18 01:46:46 +0000310 0, 0, /* No PER support, use "-gen-PER" to enable */
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000311 0, /* Use generic outmost tag fetcher */
Lev Walkin59b176e2005-11-26 11:25:14 +0000312 asn_DEF_T_tags_1,
313 sizeof(asn_DEF_T_tags_1)
314 /sizeof(asn_DEF_T_tags_1[0]) - 1, /* 1 */
315 asn_DEF_T_tags_1, /* Same as above */
316 sizeof(asn_DEF_T_tags_1)
317 /sizeof(asn_DEF_T_tags_1[0]), /* 2 */
318 0, /* No PER visible constraints */
Lev Walkin2e3055d2004-08-20 13:36:32 +0000319 0, 0, /* Defined elsewhere */
Lev Walkin5bbff1e2004-06-28 21:13:22 +0000320 0 /* No specifics */
321};
322