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

« back to all changes in this revision

Viewing changes to lib/asn1/test/asn1_SUITE_data/Mvrasn-19-6.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(Mvrasn-19-6).
 
2
-- vsn('%CCaseRev: %').
 
3
-- date('%CCaseDate: %').
 
4
-- author('etord').    
 
5
-- =============================================================================
 
6
 
 
7
-- =============================================================================
 
8
--
 
9
-- Title       : "Teleservice Codes".
 
10
--
 
11
-- ASN.1 module: "MAP-TS-Code".
 
12
--
 
13
-- =============================================================================
 
14
 
 
15
-- ==============================================================
 
16
-- #1.    REVISION LOG
 
17
-- ==============================================================
 
18
-- Rev   Date    Name     What
 
19
-- .... ....... .......  ........................................
 
20
-- PA1  010813  etord    First draft, based on GSM 29.002 v. 3.8.0.
 
21
-- ..............................................................
 
22
 
 
23
 
 
24
Mvrasn-19-6
 
25
 
 
26
DEFINITIONS
 
27
 
 
28
::=
 
29
 
 
30
BEGIN
 
31
 
 
32
TeleserviceCode ::= OCTET STRING (SIZE (1))
 
33
        -- This type is used to represent the code identifying a single
 
34
        -- teleservice, a group of teleservices, or all teleservices. The
 
35
        -- services are defined in TS GSM 02.03.
 
36
        -- The internal structure is defined as follows:
 
37
 
 
38
        -- bits 87654321: group (bits 8765) and specific service
 
39
        -- (bits 4321)
 
40
 
 
41
Ext-TeleserviceCode ::= OCTET STRING (SIZE (1..5))
 
42
        -- This type is used to represent the code identifying a single
 
43
        -- teleservice, a group of teleservices, or all teleservices. The
 
44
        -- services are defined in TS GSM 02.03.
 
45
        -- The internal structure is defined as follows:
 
46
 
 
47
        -- OCTET 1:
 
48
        -- bits 87654321: group (bits 8765) and specific service
 
49
        -- (bits 4321)
 
50
 
 
51
        -- OCTETS 2-5: reserved for future use. If received the
 
52
    -- Ext-TeleserviceCode shall be
 
53
        -- treated according to the exception handling defined for the
 
54
        -- operation that uses this type.
 
55
 
 
56
        -- Ext-TeleserviceCode includes all values defined for TeleserviceCode.
 
57
 
 
58
 
 
59
allTeleservices TeleserviceCode ::= '00000000'B
 
60
 
 
61
allSpeechTransmissionServices   TeleserviceCode ::= '00010000'B
 
62
telephony                       TeleserviceCode ::= '00010001'B
 
63
emergencyCalls          TeleserviceCode ::= '00010010'B
 
64
 
 
65
allShortMessageServices TeleserviceCode ::= '00100000'B
 
66
shortMessageMT-PP       TeleserviceCode ::= '00100001'B
 
67
shortMessageMO-PP       TeleserviceCode ::= '00100010'B
 
68
 
 
69
allFacsimileTransmissionServices        TeleserviceCode ::= '01100000'B
 
70
facsimileGroup3AndAlterSpeech   TeleserviceCode ::= '01100001'B
 
71
automaticFacsimileGroup3        TeleserviceCode ::= '01100010'B
 
72
facsimileGroup4 TeleserviceCode ::= '01100011'B
 
73
 
 
74
-- The following non-hierarchical Compound Teleservice Groups
 
75
-- are defined in TS GSM 02.30:
 
76
allDataTeleservices     TeleserviceCode ::= '01110000'B
 
77
        -- covers Teleservice Groups 'allFacsimileTransmissionServices'
 
78
        -- and 'allShortMessageServices'
 
79
allTeleservices-ExeptSMS        TeleserviceCode ::= '10000000'B
 
80
        -- covers Teleservice Groups 'allSpeechTransmissionServices' and
 
81
        -- 'allFacsimileTransmissionServices'
 
82
--
 
83
-- Compound Teleservice Group Codes are only used in call
 
84
-- independent supplementary service operations, i.e. they
 
85
-- are not used in InsertSubscriberData or in
 
86
-- DeleteSubscriberData messages.
 
87
 
 
88
allVoiceGroupCallServices       TeleserviceCode ::= '10010000'B
 
89
voiceGroupCall          TeleserviceCode ::= '10010001'B
 
90
voiceBroadcastCall      TeleserviceCode ::= '10010010'B
 
91
 
 
92
allPLMN-specificTS      TeleserviceCode ::= '11010000'B
 
93
plmn-specificTS-1       TeleserviceCode ::= '11010001'B
 
94
plmn-specificTS-2       TeleserviceCode ::= '11010010'B
 
95
plmn-specificTS-3       TeleserviceCode ::= '11010011'B
 
96
plmn-specificTS-4       TeleserviceCode ::= '11010100'B
 
97
plmn-specificTS-5       TeleserviceCode ::= '11010101'B
 
98
plmn-specificTS-6       TeleserviceCode ::= '11010110'B
 
99
plmn-specificTS-7       TeleserviceCode ::= '11010111'B
 
100
plmn-specificTS-8       TeleserviceCode ::= '11011000'B
 
101
plmn-specificTS-9       TeleserviceCode ::= '11011001'B
 
102
plmn-specificTS-A       TeleserviceCode ::= '11011010'B
 
103
plmn-specificTS-B       TeleserviceCode ::= '11011011'B
 
104
plmn-specificTS-C       TeleserviceCode ::= '11011100'B
 
105
plmn-specificTS-D       TeleserviceCode ::= '11011101'B
 
106
plmn-specificTS-E       TeleserviceCode ::= '11011110'B
 
107
plmn-specificTS-F       TeleserviceCode ::= '11011111'B
 
108
 
 
109
END