Skip to content
Snippets Groups Projects
Commit 432f504d authored by Lev Walkin's avatar Lev Walkin
Browse files

SET OF XER support

parent 534f35d2
No related branches found
No related tags found
No related merge requests found
...@@ -1514,14 +1514,7 @@ emit_type_DEF(arg_t *arg, asn1p_expr_t *expr, enum tvm_compat tv_mode, int tags_ ...@@ -1514,14 +1514,7 @@ emit_type_DEF(arg_t *arg, asn1p_expr_t *expr, enum tvm_compat tv_mode, int tags_
OUT("%s_constraint,\n", p); OUT("%s_constraint,\n", p);
OUT("%s_decode_ber,\n", p); OUT("%s_decode_ber,\n", p);
OUT("%s_encode_der,\n", p); OUT("%s_encode_der,\n", p);
switch(expr->expr_type) { OUT("%s_decode_xer,\n", p);
case ASN_CONSTR_SET_OF:
case ASN_CONSTR_SEQUENCE_OF:
OUT("0,\t\t\t\t/* Not implemented yet */\n");
break;
default:
OUT("%s_decode_xer,\n", p);
}
OUT("%s_encode_xer,\n", p); OUT("%s_encode_xer,\n", p);
if(expr->expr_type == ASN_CONSTR_CHOICE) { if(expr->expr_type == ASN_CONSTR_CHOICE) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment