~statik/ubuntu/maverick/erlang/erlang-merge-testing

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/tcapsystem/MAP-DialogueInformation.asn

  • Committer: Elliot Murphy
  • Date: 2010-06-08 03:55:44 UTC
  • mfrom: (3.5.6 squeeze)
  • Revision ID: elliot@elliotmurphy.com-20100608035544-dd8zh2swk7jr5rz2
* Merge with Debian unstable; remaining Ubuntu changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to. (LP #438365)
  - 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.
* Added missing symlinks to /usr/include for a few new header files.
* Fixed generation of ${erlang-base:Depends} and ${erlang-x11:Depends}
  substitution variables.
* Added a fix for a re:compile/2 crash on a long regular expression.
* Changed urgency to medium as the change fixes a security bug.
* Manpages in section 1 are needed even if only arch-dependent packages are
  built. So, re-enabled them.
* Fixed HiPE architecture recognition for powerpc Debian architecture.
* Moved xsltproc and fop to build-depends-indep and do not build
  documentation if only architecture-specific packages are built.
* Refreshed all patches.
* Made Emacs look in man5 and man7 for Erlang manpages and added code
  skeleton files to erlang-mode package.
* New upstream release.
* Moved manpages from incorrect sections 4 and 6 to correct 5 and 7
  (closes: #498492).
* Made manpages regexp in Emacs mode match only 3erl pages in section 3.
* Removed docb_gen script which is no longer needed to build manpages.
* Added erlang-doc package which contains documentation in HTML and PDF
  formats. This package replaces erlang-doc-html package and it's easier
  to synchronize it with the main Erlang packages as it's built from
  a single source package (closes: #558451).
* Removed RPATH from ssl and crypto application binaries as required by
  Debian policy.
* Added libwxgtk2.4-dev and libwxgtk2.6-dev to build conflicts.
* Added a few dpendencies for erlang-dialyzer, erlang-et, erlang-observer
  and erlang-examples packages which now call functions from more modules
  than in 1:13.b.3.
* Added a workaround which disables vfork() for hppa architecture
  (closes: #562218).
* Strictened check for JDK 1.5 adding a call to String(int[], int, int)
  because GCJ 4.4 doesn't implement it and OpenJDK isn't available for all
  architectures.
* Fixed erlang-manpages package section.
* Made erlang-depends add only substvars which are requested in
  debian/control file. This minimizes number of warnings from dh_gencontrol.
  Also, improved descriptions of the functions in erlang-depends escript.
* Added erlang-erl-docgen package to erlang-nox dependencies.
* Made dummy packages erlang-nox and erlang-x11 architecture all.
* Cleaned up working with custom substitution variables in debian/rules.
* Reorganized debian/rules to ensure that manpages arent built twice, and
  aren't built at all if only architecture-dependent packages are requested.
* Fixed project links in README.Debian.
* Added a new package erlang-jinterface which provides tools for
  communication of Java programs with Erlang processes. This adds build
  depandency on default-jdk and as a result enables Java module for IDL
  compiler.
* Bumped standards version to 3.8.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
MAP-DialogueInformation {
 
2
   itu-t identified-organization (4) etsi (0) mobileDomain (0)
 
3
   gsm-Network (1) modules (3) map-DialogueInformation (3) version9 (9)}
 
4
 
 
5
DEFINITIONS
 
6
 
 
7
IMPLICIT TAGS
 
8
 
 
9
::=
 
10
 
 
11
BEGIN
 
12
 
 
13
EXPORTS
 
14
        map-DialogueAS,
 
15
        MAP-DialoguePDU,
 
16
        map-ProtectedDialogueAS,
 
17
        MAP-ProtectedDialoguePDU
 
18
 
 
19
;
 
20
 
 
21
IMPORTS
 
22
        gsm-NetworkId,
 
23
        as-Id
 
24
FROM MobileDomainDefinitions {
 
25
   itu-t (0) identified-organization (4) etsi (0) mobileDomain (0)
 
26
   mobileDomainDefinitions (0) version1 (1)}
 
27
 
 
28
        AddressString
 
29
FROM MAP-CommonDataTypes {
 
30
   itu-t identified-organization (4) etsi (0) mobileDomain (0)
 
31
   gsm-Network(1) modules (3) map-CommonDataTypes (18) version9 (9)}
 
32
 
 
33
        ExtensionContainer
 
34
FROM MAP-ExtensionDataTypes {
 
35
   itu-t identified-organization (4) etsi (0) mobileDomain (0)
 
36
   gsm-Network (1) modules (3) map-ExtensionDataTypes (21) version9 (9)}
 
37
 
 
38
        SecurityHeader,
 
39
        ProtectedPayload
 
40
FROM MAP-ST-DataTypes {
 
41
   itu-t identified-organization (4) etsi (0) mobileDomain (0)
 
42
   gsm-Network (1) modules (3) map-ST-DataTypes (27) version9 (9)}
 
43
 
 
44
;
 
45
 
 
46
 
 
47
-- abstract syntax name for MAP-DialoguePDU
 
48
 
 
49
map-DialogueAS  OBJECT IDENTIFIER ::=
 
50
        {gsm-NetworkId as-Id map-DialoguePDU (1) version1 (1)}
 
51
 
 
52
MAP-DialoguePDU ::= CHOICE {
 
53
        map-open                [0] MAP-OpenInfo,
 
54
        map-accept      [1] MAP-AcceptInfo,
 
55
        map-close               [2] MAP-CloseInfo,
 
56
        map-refuse      [3] MAP-RefuseInfo,
 
57
        map-userAbort   [4] MAP-UserAbortInfo,
 
58
        map-providerAbort       [5] MAP-ProviderAbortInfo}
 
59
 
 
60
MAP-OpenInfo ::= SEQUENCE {
 
61
        destinationReference    [0] AddressString       OPTIONAL,
 
62
        originationReference    [1] AddressString       OPTIONAL,
 
63
        ...,
 
64
        extensionContainer      ExtensionContainer      OPTIONAL
 
65
        -- extensionContainer must not be used in version 2
 
66
        }
 
67
 
 
68
MAP-AcceptInfo ::= SEQUENCE {
 
69
        ...,
 
70
        extensionContainer      ExtensionContainer      OPTIONAL
 
71
        -- extensionContainer must not be used in version 2
 
72
        }
 
73
 
 
74
MAP-CloseInfo ::= SEQUENCE {
 
75
        ...,
 
76
        extensionContainer      ExtensionContainer      OPTIONAL
 
77
        -- extensionContainer must not be used in version 2
 
78
        }
 
79
 
 
80
MAP-RefuseInfo ::= SEQUENCE {
 
81
        reason  Reason,
 
82
        ...,
 
83
        extensionContainer      ExtensionContainer      OPTIONAL,
 
84
        -- extensionContainer must not be used in version 2
 
85
        alternativeApplicationContext   OBJECT IDENTIFIER       OPTIONAL
 
86
        -- alternativeApplicationContext must not be used in version 2
 
87
        }
 
88
 
 
89
Reason ::= ENUMERATED {
 
90
        noReasonGiven   (0),
 
91
        invalidDestinationReference     (1),
 
92
        invalidOriginatingReference     (2),
 
93
        encapsulatedAC-NotSupported     (3) ,
 
94
        transportProtectionNotAdequate  (4)}
 
95
        -- encapsulatedAC-NotSupported and transportProtectionNotAdequate must not be used in 
 
96
        -- dialogues with an AC different from secureTransportHandling
 
97
 
 
98
MAP-UserAbortInfo ::= SEQUENCE {
 
99
        map-UserAbortChoice     MAP-UserAbortChoice,
 
100
        ...,
 
101
        extensionContainer      ExtensionContainer      OPTIONAL
 
102
        -- extensionContainer must not be used in version 2
 
103
        }
 
104
 
 
105
MAP-UserAbortChoice ::= CHOICE {
 
106
        userSpecificReason      [0] NULL,
 
107
        userResourceLimitation  [1] NULL,
 
108
        resourceUnavailable     [2] ResourceUnavailableReason,
 
109
        applicationProcedureCancellation        [3] ProcedureCancellationReason}
 
110
 
 
111
ResourceUnavailableReason ::= ENUMERATED {
 
112
        shortTermResourceLimitation  (0),
 
113
        longTermResourceLimitation  (1)}
 
114
 
 
115
ProcedureCancellationReason ::= ENUMERATED {
 
116
        handoverCancellation  (0),
 
117
        radioChannelRelease  (1),
 
118
        networkPathRelease  (2),
 
119
        callRelease  (3),
 
120
        associatedProcedureFailure  (4),
 
121
        tandemDialogueRelease  (5),
 
122
        remoteOperationsFailure  (6)}
 
123
 
 
124
MAP-ProviderAbortInfo ::= SEQUENCE {
 
125
        map-ProviderAbortReason MAP-ProviderAbortReason,
 
126
        ...,
 
127
        extensionContainer      ExtensionContainer      OPTIONAL
 
128
        -- extensionContainer must not be used in version 2
 
129
        }
 
130
 
 
131
MAP-ProviderAbortReason ::= ENUMERATED {
 
132
        abnormalDialogue  (0),
 
133
        invalidPDU  (1)}
 
134
 
 
135
-- abstract syntax name for MAP-ProtectedDialoguePDU
 
136
 
 
137
map-ProtectedDialogueAS  OBJECT IDENTIFIER ::=
 
138
        {gsm-NetworkId as-Id map-ProtectedDialoguePDU (3) version1 (1)}
 
139
 
 
140
MAP-ProtectedDialoguePDU ::= SEQUENCE {
 
141
        encapsulatedAC  OBJECT IDENTIFIER,
 
142
        securityHeader  SecurityHeader  OPTIONAL,
 
143
        protectedPayload        ProtectedPayload        OPTIONAL,
 
144
        ...}
 
145
        -- The protectedPayload carries the result of applying the security function 
 
146
        -- defined in 3GPP TS 33.200 to the encoding of the securely transported 
 
147
        -- MAP-DialoguePDU
 
148
 
 
149
END