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
|
-- Call-Intrusion-Operations.asn
--
-- Taken from ITU ASN.1 database
-- http://www.itu.int/ITU-T/asn1/database/itu-t/h/h450.11/2001/Call-Intrusion-Operations.asn
--
-- Module Call-Intrusion-Operations (H.450.11:03/2001)
Call-Intrusion-Operations {itu-t recommendation h 450 11 version1(0)
call-intrusion-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)}
CallIdentifier
FROM H323-MESSAGES -- see H.225.0
MixedExtension, undefined
FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
call-hold-operations(0)}
notAvailable, supplementaryServiceInteractionNotAllowed
FROM H4501-General-Error-List {itu-t recommendation h 450 1 version1(0)
general-error-list(1)}
callWaiting
FROM Call-Waiting-Operations {itu-t recommendation h 450 6 version1(0)
call-waiting-operations(0)}
cfbOverride, remoteUserAlerting
FROM Call-Offer-Operations {itu-t recommendation h 450 10 version1(0)
call-offer-operations(0)};
H323CallIntrusionOperations OPERATION ::=
{callIntrusionRequest | callIntrusionGetCIPL | callIntrusionIsolate |
callIntrusionForcedRelease | callIntrusionWOBRequest |
callIntrusionSilentMonitor | callIntrusionNotification | cfbOverride |
remoteUserAlerting | callWaiting}
-- callWaiting is only used for interaction with Call Transfer
callIntrusionRequest OPERATION ::= {
ARGUMENT CIRequestArg
RESULT CIRequestRes
ERRORS
{notAvailable | notBusy | temporarilyUnavailable | notAuthorized |
undefined | supplementaryServiceInteractionNotAllowed}
CODE local:43
}
callIntrusionGetCIPL OPERATION ::= {
ARGUMENT CIGetCIPLOptArg
OPTIONAL TRUE
RESULT CIGetCIPLRes
ALWAYS RESPONDS FALSE
CODE local:44
}
callIntrusionIsolate OPERATION ::= {
ARGUMENT CIIsOptArg
OPTIONAL TRUE
RESULT CIIsOptRes
OPTIONAL TRUE
ERRORS
{notAvailable | undefined | supplementaryServiceInteractionNotAllowed}
CODE local:45
}
callIntrusionForcedRelease OPERATION ::= {
ARGUMENT CIFrcRelArg
OPTIONAL TRUE
RESULT CIFrcRelOptRes
OPTIONAL TRUE
ERRORS
{notAvailable | notBusy | temporarilyUnavailable | notAuthorized |
undefined | supplementaryServiceInteractionNotAllowed}
CODE local:46
}
callIntrusionWOBRequest OPERATION ::= {
ARGUMENT CIWobOptArg
OPTIONAL TRUE
RESULT CIWobOptRes
OPTIONAL TRUE
ERRORS
{notAvailable | undefined | supplementaryServiceInteractionNotAllowed}
CODE local:47
}
callIntrusionSilentMonitor OPERATION ::= {
ARGUMENT CISilentArg
RESULT CISilentOptRes
OPTIONAL TRUE
ERRORS
{notAvailable | notBusy | temporarilyUnavailable | notAuthorized |
undefined | supplementaryServiceInteractionNotAllowed}
CODE local:116
}
callIntrusionNotification OPERATION ::= {
ARGUMENT CINotificationArg
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:117
}
CIRequestArg ::= SEQUENCE {
ciCapabilityLevel CICapabilityLevel,
argumentExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIRequestRes ::= SEQUENCE {
ciStatusInformation CIStatusInformation,
resultExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIGetCIPLOptArg ::= SEQUENCE {
argumentExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIGetCIPLRes ::= SEQUENCE {
ciProtectionLevel CIProtectionLevel,
silentMonitoringPermitted NULL OPTIONAL,
resultExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIIsOptArg ::= SEQUENCE {
argumentExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIIsOptRes ::= SEQUENCE {
resultExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIFrcRelArg ::= SEQUENCE {
ciCapabilityLevel CICapabilityLevel,
argumentExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIFrcRelOptRes ::= SEQUENCE {
resultExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIWobOptArg ::= SEQUENCE {
argumentExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CIWobOptRes ::= SEQUENCE {
resultExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CISilentArg ::= SEQUENCE {
ciCapabilityLevel CICapabilityLevel,
specificCall CallIdentifier OPTIONAL,
argumentExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CISilentOptRes ::= SEQUENCE {
resultExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CINotificationArg ::= SEQUENCE {
ciStatusInformation CIStatusInformation,
argumentExtension SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...
}
CICapabilityLevel ::= INTEGER {
intrusionLowCap(1), intrusionMediumCap(2), intrusionHighCap(3)}(1..3)
CIProtectionLevel ::= INTEGER {
lowProtection(0), mediumProtection(1), highProtection(2), fullProtection(3)
}(0..3)
CIStatusInformation ::= CHOICE {
callIntrusionImpending NULL,
callIntruded NULL,
callIsolated NULL,
callForceReleased NULL,
callIntrusionComplete NULL,
callIntrusionEnd NULL,
...
}
notBusy ERROR ::= {CODE local:1009
} -- used when the called user is not busy
temporarilyUnavailable ERROR ::= {CODE local:1000
} -- used when conditions for invocation of SS-CI
-- are momentarily not met
notAuthorized ERROR ::= {CODE local:1007
} -- used when a SS-CI request is rejected
-- because of insufficient CICL or if silent
-- monitoring is not permitted
END -- of Call-Intrusion-Operations
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
|