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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
-- Call-Transfer-Operations.asn
--
-- Taken from ITU ASN.1 database
-- http://www.itu.int/ITU-T/asn1/database/itu-t/h/h450.2/1998/Call-Transfer-Operations.asn
--
-- Module Call-Transfer-Operations (H.450.2:02/1998)
Call-Transfer-Operations {itu-t recommendation h 450 2 version1(0)
call-transfer-operations(0)} DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
OPERATION, ERROR
FROM Remote-Operations-Information-Objects {joint-iso-itu-t
remote-operations(4) informationObjects(5) version1(0)}
EXTENSION, Extension{}
FROM Manufacturer-specific-service-extension-definition {itu-t
recommendation h 450 1 version1(0) msi-definition(18)}
notAvailable, supplementaryServiceInteractionNotAllowed, invalidCallState
FROM H4501-General-Error-List {itu-t recommendation h 450 1 version1(0)
general-error-list(1)}
EndpointAddress, PartySubaddress
FROM Addressing-Data-Elements {itu-t recommendation h 450 1 version1(0)
addressing-data-elements(9)}
NonStandardParameter
FROM H323-MESSAGES -- see H.225.0
H225InformationElement
FROM H225-generic-parameters-definition {itu-t recommendation h 450
1 version1(0) h225-generic-parameters(6)};
H323CallTransferOperations OPERATION ::=
{callTransferIdentify | callTransferAbandon | callTransferInitiate |
callTransferSetup | callTransferUpdate | subaddressTransfer |
callTransferComplete | callTransferActive}
callTransferIdentify OPERATION ::= {
-- sent from transferring endpoint to transferred-to endpoint
ARGUMENT DummyArg
OPTIONAL TRUE
RESULT CTIdentifyRes
ERRORS
{notAvailable | invalidCallState |
supplementaryServiceInteractionNotAllowed | unspecified}
CODE local:7
}
callTransferAbandon OPERATION ::= {
-- sent from transferring to transferred-to endpoint
ARGUMENT DummyArg
OPTIONAL TRUE
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:8
}
callTransferInitiate OPERATION ::= {
-- sent from transfering to transferred endpoint
ARGUMENT CTInitiateArg
RESULT DummyRes
OPTIONAL TRUE
ERRORS
{notAvailable | invalidCallState | invalidReroutingNumber |
unrecognizedCallIdentity | establishmentFailure |
supplementaryServiceInteractionNotAllowed | unspecified}
CODE local:9
}
callTransferSetup OPERATION ::= {
-- sent from transferred to transferred-to endpoint
ARGUMENT CTSetupArg
RESULT DummyRes
OPTIONAL TRUE
ERRORS
{notAvailable | invalidCallState | invalidReroutingNumber |
unrecognizedCallIdentity | unspecified |
supplementaryServiceInteractionNotAllowed}
CODE local:10
}
callTransferUpdate OPERATION ::= {
-- may be sent from transferred to transferred-to endpoint (in SETUP) and
-- vice versa (in CONNECT)
ARGUMENT CTUpdateArg
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:13
}
subaddressTransfer OPERATION ::= {
-- may be sent from transferred to the transferred-to endpoint and vice versa
ARGUMENT SubaddressTransferArg
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:14
}
callTransferComplete OPERATION ::= {
-- sent from GK to the transferred endpoint, if GK performs call transfer
-- (see 10.6.1).
ARGUMENT CTCompleteArg
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:12
}
callTransferActive OPERATION ::= {
-- sent from gatekeeper to the transferred endpoint, in case of transfer ringing
-- after transferred-to endpoint has answered the call (only in case of
-- transfer performed by gatekeeper)
ARGUMENT CTActiveArg
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:11
}
DummyArg ::= CHOICE {
extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter
}
DummyRes ::= CHOICE {
extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter
}
CTInitiateArg ::= SEQUENCE {
callIdentity CallIdentity,
reroutingNumber EndpointAddress,
argumentExtension
CHOICE {extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter} OPTIONAL,
...
}
CTSetupArg ::= SEQUENCE {
callIdentity CallIdentity,
transferringNumber EndpointAddress OPTIONAL,
argumentExtension
CHOICE {extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter} OPTIONAL,
...
}
CTIdentifyRes ::= SEQUENCE {
callIdentity CallIdentity,
reroutingNumber EndpointAddress,
resultExtension
CHOICE {extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter} OPTIONAL,
...
}
CTUpdateArg ::= SEQUENCE {
redirectionNumber EndpointAddress,
redirectionInfo BMPString(SIZE (1..128)) OPTIONAL,
basicCallInfoElements H225InformationElement OPTIONAL,
-- Information element
-- Progress indicator may be conveyed
argumentExtension
CHOICE {extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter} OPTIONAL,
...
}
SubaddressTransferArg ::= SEQUENCE {
redirectionSubaddress PartySubaddress,
argumentExtension
CHOICE {extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter} OPTIONAL,
...
}
CTCompleteArg ::= SEQUENCE {
endDesignation EndDesignation,
redirectionNumber EndpointAddress,
-- number of new connected user
basicCallInfoElements H225InformationElement OPTIONAL,
-- Information element Progress indicator may be conveyed
redirectionInfo BMPString(SIZE (1..128)) OPTIONAL,
callStatus CallStatus DEFAULT answered,
argumentExtension
CHOICE {extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter} OPTIONAL,
...
}
EndDesignation ::= ENUMERATED {primaryEnd(0), secondaryEnd(1), ...
}
CallStatus ::= ENUMERATED {answered(0), alerting(1), ...
}
CTActiveArg ::= SEQUENCE {
connectedAddress EndpointAddress,
-- number of new connected user
basicCallInfoElements H225InformationElement OPTIONAL,
-- Information element Progress indicator may be conveyed
connectedInfo BMPString(SIZE (1..128)) OPTIONAL,
argumentExtension
CHOICE {extensionSeq ExtensionSeq,
nonStandardData NonStandardParameter} OPTIONAL,
...
}
CallIdentity ::= NumericString(SIZE (0..4))
-- size 0 means 'empty'
ExtensionSeq ::= SEQUENCE OF Extension{{ExtensionSet}}
ExtensionSet EXTENSION ::=
{...}
-- Actual values defined by individual manufacturers
unspecified ERROR ::= {
PARAMETER
CHOICE {extension Extension{{ExtensionSet}},
nonStandard NonStandardParameter}
CODE local:1008
}
invalidReroutingNumber ERROR ::= {
-- used when establishment of the new connection fails
-- because the reroutingNumber is not a valid alias address
CODE local:1004
}
unrecognizedCallIdentity ERROR ::= {
-- used when establishment of the new connection fails because it
-- could not be associated with a SS-CT entity at the
-- transferred-to endpoint
CODE local:1005
}
establishmentFailure ERROR ::= {
-- used when establishment of the new connection fails and
-- no other error applies
CODE local:1006
}
END -- of Call-Transfer-Operations
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
|