blob: 31bf4581dad27ae8ee040a772358f45bdb97ba8b [file] [log] [blame]
Lev Walkinea6635b2017-08-06 23:23:04 -07001ModuleComponentRelationConstraint { iso org(3) dod(6) internet(1) private(4)
2 enterprise(1) spelio(9363) software(1) asn1c(5) test(1) 139 }
3DEFINITIONS ::=
4BEGIN
5
6Frame ::= SEQUENCE {
7 ident FRAME-STRUCTURE.&id ({FrameTypes}),
8 value FRAME-STRUCTURE.&Type ({FrameTypes}{@.ident}),
9 ...
10}
11
12FRAME-STRUCTURE ::= CLASS {
13 &id INTEGER UNIQUE,
14 &Type ANY
15} WITH SYNTAX {&Type IDENTIFIED BY &id}
16
Lev Walkind0f7b912017-08-07 18:13:04 -070017-- Information Object Set has 2 entries:
Lev Walkinea6635b2017-08-06 23:23:04 -070018-- [ &id][ &Type]
19-- [1] basicMessage PrimitiveMessage
20-- [2] 2 ComplexMessage
21
22
23FrameTypes FRAME-STRUCTURE ::= {{ PrimitiveMessage IDENTIFIED BY basicMessage } | { ComplexMessage IDENTIFIED BY 2 },...}
Lev Walkind0f7b912017-08-07 18:13:04 -070024-- Information Object Set has 2 entries:
25-- [ &id][ &Type]
26-- [1] basicMessage PrimitiveMessage
27-- [2] 2 ComplexMessage
Lev Walkine3917082017-08-23 10:29:38 -070028-- [ ] ...
Lev Walkind0f7b912017-08-07 18:13:04 -070029
Lev Walkinea6635b2017-08-06 23:23:04 -070030
31PrimitiveMessage ::= SEQUENCE { }
32
33ComplexMessage ::= SEQUENCE { }
34
35basicMessage INTEGER ::= 1
36
37END