implement TeletexString

This commit is contained in:
Love Hornquist Astrand
2009-09-30 00:48:18 -07:00
parent 0b144cdf8d
commit 4d06f484ec
9 changed files with 37 additions and 1 deletions

View File

@@ -383,6 +383,10 @@ encode_type (const char *name, const Type *t, const char *tmpstr)
encode_primitive ("general_string", name);
constructed = 0;
break;
case TTeletexString:
encode_primitive ("general_string", name);
constructed = 0;
break;
case TTag: {
char *tname;
int c;
@@ -521,6 +525,7 @@ generate_type_encode (const Symbol *s)
case TOctetString:
case TGeneralizedTime:
case TGeneralString:
case TTeletexString:
case TUTCTime:
case TUTF8String:
case TPrintableString: