aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/sabp/SABP-PDU.asn
blob: becb238e0a73d4f1b95daae3048e38eefe0752b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
SABP-PDU {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) 
umts-Access (20) modules (3) sabp(3) version1 (1) sabp-PDU (255) }

DEFINITIONS AUTOMATIC TAGS ::=

BEGIN

IMPORTS
    maxProtocolIEs
FROM SABP-Constants

    Criticality,
    ProcedureCode,
    ProtocolIE-ID
FROM SABP-CommonDataTypes;

SABP-PDU ::= CHOICE {
    initiatingMessage		InitiatingMessage,
    successfulOutcome		SuccessfulOutcome,
    unsuccessfulOutcome		UnsuccessfulOutcome,
    ...
}

InitiatingMessage ::= SEQUENCE {
    procedureCode	ProcedureCode,
    criticality		Criticality,
    value		ANY
}

SuccessfulOutcome ::= SEQUENCE {
    procedureCode	ProcedureCode,
    criticality		Criticality,
    value		ANY
}

UnsuccessfulOutcome ::= SEQUENCE {
    procedureCode	ProcedureCode,
    criticality		Criticality,
    value		ANY
}


Write-Replace ::= SEQUENCE {
    write-Replace-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Write-Replace-Complete ::= SEQUENCE {
    write-Replace-Complete-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Write-Replace-Failure ::= SEQUENCE {
    write-Replace-Failure-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Kill ::= SEQUENCE {
    kill-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Kill-Complete ::= SEQUENCE {
    kill-Complete-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Kill-Failure ::= SEQUENCE {
    kill-Failure-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Load-Query ::= SEQUENCE {
    load-Query-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Load-Query-Complete ::= SEQUENCE {
    load-Query-Complete-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Load-Query-Failure ::= SEQUENCE {
    load-Query-Failure-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Message-Status-Query ::= SEQUENCE {
    message-Status-Query-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Message-Status-Query-Complete ::= SEQUENCE {
    message-Status-Query-Complete-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Message-Status-Query-Failure ::= SEQUENCE {
    message-Status-Query-Failure-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Reset ::= SEQUENCE {
    reset-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Reset-Complete ::= SEQUENCE {
    reset-Complete-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Reset-Failure ::= SEQUENCE {
    reset-Failure-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Restart ::= SEQUENCE {
    restart-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Failure ::= SEQUENCE {
    failure-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

Error-Indication ::= SEQUENCE {
    error-Indication-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}


IE ::= SEQUENCE {
    id ProtocolIE-ID,
    criticality Criticality,
    value ANY
}

END