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

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/x420/IPMSExtendedBodyPartTypes.asn

  • 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
-- Module IPMSExtendedBodyPartTypes (X.420:06/1999)
 
2
IPMSExtendedBodyPartTypes {joint-iso-itu-t mhs(6) ipms(1) modules(0)
 
3
  extended-body-part-types(7) version-1994(0)} DEFINITIONS IMPLICIT TAGS ::=
 
4
BEGIN
 
5
 
 
6
-- Prologue
 
7
-- Exports everything.
 
8
IMPORTS
 
9
  -- IPMS Information Objects
 
10
  BilaterallyDefinedBodyPart, EncryptedData, EncryptedParameters,
 
11
    EXTENDED-BODY-PART-TYPE, G3FacsimileData, G3FacsimileParameters,
 
12
    G4Class1BodyPart, IA5TextData, IA5TextParameters, MessageData,
 
13
    MessageParameters, MixedModeBodyPart, NationallyDefinedBodyPart,
 
14
    TeletexData, TeletexParameters, VideotexData, VideotexParameters
 
15
    --==
 
16
    FROM IPMSInformationObjects {joint-iso-itu-t mhs(6) ipms(1) modules(0)
 
17
      information-objects(2) version-1999(1)}
 
18
  -- IPMS Object Identifiers
 
19
  id-ep-encrypted, id-ep-g3-facsimile, id-ep-ia5-text, id-ep-message,
 
20
    id-ep-teletex, id-ep-videotex, id-et-bilaterally-defined, id-et-encrypted,
 
21
    id-et-g3-facsimile, id-et-g4-class1, id-et-ia5-text, id-et-message,
 
22
    id-et-mixed-mode, id-et-nationally-defined, id-et-teletex, id-et-videotex
 
23
    --==
 
24
    FROM IPMSObjectIdentifiers {joint-iso-itu-t mhs(6) ipms(1) modules(0)
 
25
      object-identifiers(0) version-1999(1)};
 
26
 
 
27
-- Extended IA5 Text body part
 
28
ia5-text-body-part EXTENDED-BODY-PART-TYPE ::= {
 
29
  PARAMETERS  {IA5TextParameters
 
30
               IDENTIFIED BY  id-ep-ia5-text},
 
31
  DATA        {IA5TextData
 
32
               IDENTIFIED BY  id-et-ia5-text}
 
33
}
 
34
 
 
35
-- Extended G3 Facsimile body part
 
36
g3-facsimile-body-part EXTENDED-BODY-PART-TYPE ::= {
 
37
  PARAMETERS  {G3FacsimileParameters
 
38
               IDENTIFIED BY  id-ep-g3-facsimile},
 
39
  DATA        {G3FacsimileData
 
40
               IDENTIFIED BY  id-et-g3-facsimile}
 
41
}
 
42
 
 
43
-- Extended G4 Class 1 body part
 
44
g4-class1-body-part EXTENDED-BODY-PART-TYPE ::= {
 
45
  DATA  {G4Class1BodyPart
 
46
         IDENTIFIED BY  id-et-g4-class1}
 
47
}
 
48
 
 
49
-- Extended Teletex body part
 
50
teletex-body-part EXTENDED-BODY-PART-TYPE ::= {
 
51
  PARAMETERS  {TeletexParameters
 
52
               IDENTIFIED BY  id-ep-teletex},
 
53
  DATA        {TeletexData
 
54
               IDENTIFIED BY  id-et-teletex}
 
55
}
 
56
 
 
57
-- Extended Videotex body part
 
58
videotex-body-part EXTENDED-BODY-PART-TYPE ::= {
 
59
  PARAMETERS  {VideotexParameters
 
60
               IDENTIFIED BY  id-ep-videotex},
 
61
  DATA        {VideotexData
 
62
               IDENTIFIED BY  id-et-videotex}
 
63
}
 
64
 
 
65
-- Extended Encrypted body part
 
66
encrypted-body-part EXTENDED-BODY-PART-TYPE ::= {
 
67
  PARAMETERS  {EncryptedParameters
 
68
               IDENTIFIED BY  id-ep-encrypted},
 
69
  DATA        {EncryptedData
 
70
               IDENTIFIED BY  id-et-encrypted}
 
71
}
 
72
 
 
73
-- Extended Message body part
 
74
message-body-part EXTENDED-BODY-PART-TYPE ::= {
 
75
  PARAMETERS  {MessageParameters
 
76
               IDENTIFIED BY  id-ep-message},
 
77
  DATA        {MessageData
 
78
               IDENTIFIED BY  id-et-message}
 
79
}
 
80
 
 
81
-- Extended Mixed-mode body part
 
82
mixed-mode-body-part EXTENDED-BODY-PART-TYPE ::= {
 
83
  DATA  {MixedModeBodyPart
 
84
         IDENTIFIED BY  id-et-mixed-mode}
 
85
}
 
86
 
 
87
-- Extended Bilaterally Defined body part
 
88
bilaterally-defined-body-part EXTENDED-BODY-PART-TYPE ::= {
 
89
  DATA  {BilaterallyDefinedBodyPart
 
90
         IDENTIFIED BY  id-et-bilaterally-defined}
 
91
}
 
92
 
 
93
-- Extended Nationally Defined body part
 
94
nationally-defined-body-part EXTENDED-BODY-PART-TYPE ::= {
 
95
  DATA  {NationallyDefinedBodyPart
 
96
         IDENTIFIED BY  id-et-nationally-defined}
 
97
}
 
98
 
 
99
END -- of IPMSExtendedBodyPartTypes
 
100
 
 
101
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
 
102