~ubuntu-branches/ubuntu/trusty/erlang/trusty

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/External.asn1

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-05-05 15:48:43 UTC
  • mfrom: (3.5.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110505154843-0om6ekzg6m7ugj27
Tags: 1:14.b.2-dfsg-3ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to.
  - Drop erlang-wx binary.
  - Drop erlang-wx dependency from -megaco, -common-test, and -reltool, they
    do not really need wx. Also drop it from -debugger; the GUI needs wx,
    but it apparently has CLI bits as well, and is also needed by -megaco,
    so let's keep the package for now.
  - debian/patches/series: Do what I meant, and enable build-options.patch
    instead.
* Additional changes:
  - Drop erlang-wx from -et
* Dropped Changes:
  - patches/pcre-crash.patch: CVE-2008-2371: outer level option with
    alternatives caused crash. (Applied Upstream)
  - fix for ssl certificate verification in newSSL: 
    ssl_cacertfile_fix.patch (Applied Upstream)
  - debian/patches/series: Enable native.patch again, to get stripped beam
    files and reduce the package size again. (build-options is what
    actually accomplished this)
  - Remove build-options.patch on advice from upstream and because it caused
    odd build failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
External DEFINITIONS IMPLICIT TAGS ::= 
 
2
 
 
3
BEGIN
 
4
 
 
5
XSeq1 ::= SEQUENCE 
 
6
{
 
7
  bool1  BOOLEAN,
 
8
  int1  INTEGER,
 
9
  seq1  XSeqIn
 
10
}
 
11
 
 
12
XSeqIn ::= SEQUENCE 
 
13
{
 
14
  boolIn  BOOLEAN,
 
15
  intIn  INTEGER
 
16
}
 
17
 
 
18
XSet1 ::= SET 
 
19
{
 
20
  bool1  BOOLEAN,
 
21
  int1  INTEGER,
 
22
  set1  XSetIn
 
23
}
 
24
 
 
25
XSetIn ::= SET 
 
26
{
 
27
  boolIn  BOOLEAN,
 
28
  intIn  INTEGER
 
29
}
 
30
 
 
31
XBool ::= BOOLEAN
 
32
XBoolImp ::= [22] BOOLEAN
 
33
XBoolExp ::= [23] EXPLICIT BOOLEAN
 
34
 
 
35
XCho ::= CHOICE
 
36
{
 
37
  boolCho [44] BOOLEAN,
 
38
  intCho [45] INTEGER
 
39
}
 
40
 
 
41
 
 
42
XSetExt1 ::= SET 
 
43
{
 
44
  ...
 
45
}
 
46
 
 
47
XSetExt2 ::= SET 
 
48
{
 
49
  bool  BOOLEAN,
 
50
  int  INTEGER,
 
51
  ...
 
52
}
 
53
 
 
54
-- XSetExt3 ::= SET 
 
55
-- {
 
56
--   ...,
 
57
--   bool  BOOLEAN,
 
58
--   int  INTEGER
 
59
-- }
 
60
 
 
61
-- XSetExt4 ::= SET 
 
62
-- {
 
63
--   bool  BOOLEAN,
 
64
--   ...,
 
65
--   int  INTEGER
 
66
-- }
 
67
 
 
68
 
 
69
XSeqExt1 ::= SEQUENCE 
 
70
{
 
71
  ...
 
72
}
 
73
 
 
74
XSeqExt2 ::= SEQUENCE 
 
75
{
 
76
  bool  BOOLEAN,
 
77
  int  INTEGER,
 
78
  ...
 
79
}
 
80
 
 
81
-- XSeqExt3 ::= SEQUENCE 
 
82
-- {
 
83
--   ...,
 
84
--   bool  BOOLEAN,
 
85
--   int  INTEGER
 
86
-- }
 
87
 
 
88
-- XSeqExt4 ::= SEQUENCE 
 
89
-- {
 
90
--   bool  BOOLEAN,
 
91
--   ...,
 
92
--   int  INTEGER
 
93
-- }
 
94
 
 
95
 
 
96
 
 
97
XNT ::= OCTET STRING
 
98
XImp ::= [1] OCTET STRING
 
99
XExp ::= [2] EXPLICIT OCTET STRING
 
100
 
 
101
XChoNT ::=  CHOICE {
 
102
   os OCTET STRING,
 
103
   bool BOOLEAN}
 
104
XChoExp ::=  [2] EXPLICIT CHOICE {
 
105
   os OCTET STRING,
 
106
   bool BOOLEAN}
 
107
 
 
108
 
 
109
XSetNT ::=  SET {
 
110
   os OCTET STRING,
 
111
   bool BOOLEAN}
 
112
XSetImp ::=  [1] SET {
 
113
   os OCTET STRING,
 
114
   bool BOOLEAN}
 
115
XSetExp ::=  [2] EXPLICIT SET {
 
116
   os OCTET STRING,
 
117
   bool BOOLEAN}
 
118
 
 
119
 
 
120
XSeqNT ::=  SEQUENCE {
 
121
   os OCTET STRING,
 
122
   bool BOOLEAN}
 
123
XSeqImp ::=  [1] SEQUENCE {
 
124
   os OCTET STRING,
 
125
   bool BOOLEAN}
 
126
XSeqExp ::=  [2] EXPLICIT SEQUENCE {
 
127
   os OCTET STRING,
 
128
   bool BOOLEAN}
 
129
 
 
130
 
 
131
 
 
132
END