diff options
author | Kenneth Lundin <[email protected]> | 2010-02-19 14:01:57 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-19 14:01:57 +0000 |
commit | 18bd1239bee04427340a44f57f993ea92c264e41 (patch) | |
tree | dbb3031dcd2e446eb457ff7ac5229949517d7557 /lib/asn1/test/asn1_SUITE_data/SetOf.asn1 | |
parent | 729565dc3f8bcf8829508136498aef6a542840f4 (diff) | |
download | otp-18bd1239bee04427340a44f57f993ea92c264e41.tar.gz otp-18bd1239bee04427340a44f57f993ea92c264e41.tar.bz2 otp-18bd1239bee04427340a44f57f993ea92c264e41.zip |
OTP-8463 Support for EXTENSIBILITY IMPLIED and SET/SEQ OF NamedType is
added.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data/SetOf.asn1')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/SetOf.asn1 | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/SetOf.asn1 b/lib/asn1/test/asn1_SUITE_data/SetOf.asn1 new file mode 100644 index 0000000000..cdb770f8de --- /dev/null +++ b/lib/asn1/test/asn1_SUITE_data/SetOf.asn1 @@ -0,0 +1,61 @@ +SetOf DEFINITIONS IMPLICIT TAGS ::= + +BEGIN + +Set1 ::= SET +{ + bool1 BOOLEAN, + int1 INTEGER, + set1 SET OF SetIn DEFAULT {} +} + +Set2 ::= SET +{ + set2 SET OF SetIn DEFAULT {}, + bool2 BOOLEAN, + int2 INTEGER +} + +Set3 ::= SET +{ + bool3 BOOLEAN, + set3 SET OF SetIn DEFAULT {}, + int3 INTEGER +} + +Set4 ::= SET +{ + set41 [41] SET OF SetIn DEFAULT {}, + set42 [42] SET OF SetIn DEFAULT {}, + set43 [43] SET OF SetIn DEFAULT {} +} + + + +SetIn ::= SET +{ + boolIn BOOLEAN, + intIn INTEGER +} + + +SetOs ::= SET OF OCTET STRING +SetOsImp ::= [23] SET OF OCTET STRING +SetOsExp ::= [24] EXPLICIT SET OF OCTET STRING + +SetCho ::= SET OF CHOICE {bool BOOLEAN, + int INTEGER, + last NULL} + + + +SetEmp ::= SET +{ + set1 SET OF Empty DEFAULT {} +} + +Empty ::= SET +{ +} + +END |