~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/Mvrasn-21-4.asn

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2010-03-09 17:34:57 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100309173457-4yd6hlcb2osfhx31
Tags: 1:13.b.4-dfsg-3
Manpages in section 1 are needed even if only arch-dependent packages are
built. So, re-enabled them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- module(Mvrasn-21-4).
 
2
-- vsn('%CCaseRev: %').
 
3
-- date('%CCaseDate: %').
 
4
-- author('eedkbu').    
 
5
-- =============================================================================
 
6
 
 
7
-- =============================================================================
 
8
--
 
9
-- Title       : "Extension data types".
 
10
--
 
11
-- ASN.1 module: "MAP-ExtensionDataTypes".
 
12
--
 
13
-- =============================================================================
 
14
 
 
15
-- ==============================================================
 
16
-- #1.    REVISION LOG
 
17
-- ==============================================================
 
18
-- Rev   Date    Name     What
 
19
-- .... ....... .......  ........................................
 
20
-- PA1  981014   eedkbu   First draft including changes due to
 
21
--                        incompatibilities of the ASN.1-ERLANG 
 
22
--                        compiler from OTP.
 
23
--                        Based on GSM 09.02 v. 6.1.0.
 
24
-- ..............................................................
 
25
 
 
26
 
 
27
-- =============================================================================
 
28
--  
 
29
--  NOTE:
 
30
--
 
31
--  This module was changed compared to the original in the ETSI 
 
32
--  standard GSM 09.02 v. 6.1.0. The reason for this change was an 
 
33
--  incompatibility of the used ASN.1-ERLANG compiler from OTP. 
 
34
--
 
35
--  In GSM 09.02 v. 6.1.0 the data type 'ExtensionContainer' is partly
 
36
--  defined by the ASN.1 type 'CLASS', but the ASN.1-ERLANG compiler is 
 
37
--  not able to handle such a 'CLASS' construct correctly. Therefore, and 
 
38
--  since the content of a received 'ExtensionContainer' is not of further
 
39
--  interest at this stage of the project, the data type 'ExtensionContainer'
 
40
--  has been changed here.
 
41
--  
 
42
--  The new definition of 'ExtensionContainer' is simply an ASN.1 'Extension'
 
43
--  ('...'). This definition allows to receive any kind of information
 
44
--  within the 'ExtensionContainer' without causing a crash of the 
 
45
--  decoder when handling the respective message.
 
46
--
 
47
-- =============================================================================
 
48
 
 
49
Mvrasn-21-4
 
50
 
 
51
DEFINITIONS
 
52
 
 
53
IMPLICIT TAGS
 
54
 
 
55
::=
 
56
 
 
57
BEGIN
 
58
 
 
59
EXPORTS
 
60
 
 
61
    ExtensionContainer;
 
62
 
 
63
ExtensionContainer ::= SEQUENCE {
 
64
    ...}
 
65
 
 
66
END