aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/hnbap/HNBAP-PDU.asn
blob: 6d32215e49034372859cbad694d999f0a73427fc (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
142
143
144
145
146
HNBAP-PDU {
itu-t (0) identified-organization (4) etsi (0) mobileDomain (0) 
umts-Access (20) modules (3) hnbap(6) version1 (1) hnbap-PDU (255) }

DEFINITIONS AUTOMATIC TAGS ::=

BEGIN

IMPORTS
    maxProtocolIEs,
    Criticality,
    ProcedureCode,
    ProtocolIE-ID

FROM HNBAP-CommonDataTypes;


HNBAP-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
}


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

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

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

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

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

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

UEDe-Register ::= SEQUENCE {
    ueDe-Register-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

HNBDe-Register ::= SEQUENCE {
    hnbDe-Register-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

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

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

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

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

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

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

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

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

U-RNTIQueryRequest ::= SEQUENCE {
    u-RNTIQueryRequest-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

U-RNTIQueryResponse ::= SEQUENCE {
    u-RNTIQueryResponse-ies SEQUENCE (SIZE (0..maxProtocolIEs)) OF IE,
    ...
}

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


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

END