aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h450/h4501.asn
blob: 2ffc28785211587218c1aee00e4d280ffde3d286 (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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
-- Module H4501-Supplementary-ServiceAPDU-Structure (H.450.1:02/1998)
H4501-Supplementary-ServiceAPDU-Structure {itu-t recommendation h 450 
  1 version1(0) h4501-facility-information-structure(2)} DEFINITIONS AUTOMATIC
TAGS ::=
BEGIN

IMPORTS
  AliasAddress, PartyNumber, PresentationIndicator, ScreeningIndicator, NonStandardParameter, CallIdentifier
    FROM H323-MESSAGES -- see H.225.0 V2
      
  OPERATION, ROS{}, InvokeId
    FROM Remote-Operations-Apdus {itu-t recommendation h 450 1 version1(0)
      remote-operations-apdus(11)};

H4501SupplementaryService ::= SEQUENCE {
  networkFacilityExtension  NetworkFacilityExtension OPTIONAL, -- see 8.1
  interpretationApdu        InterpretationApdu OPTIONAL, -- see 8.2
  serviceApdu               ServiceApdus, -- H.450.x supplementary services
  ...
}

NetworkFacilityExtension ::= SEQUENCE {
  sourceEntity              EntityType,
  sourceEntityAddress       AddressInformation OPTIONAL,
  destinationEntity         EntityType,
  destinationEntityAddress  AddressInformation OPTIONAL,
  ...
}

EntityType ::= CHOICE {endpoint   NULL,
                       anyEntity  NULL,
                       ...
}

AddressInformation ::= AliasAddress

InterpretationApdu ::= CHOICE {
  discardAnyUnrecognizedInvokePdu       NULL,
  clearCallIfAnyInvokePduNotRecognized  NULL,
  -- this value also applies to Call independent signalling connections 
  rejectAnyUnrecognizedInvokePdu        NULL,
  -- this coding is implied by the absence of an interpretation APDU.
  ...
}

ServiceApdus ::= CHOICE {
  rosApdus
    SEQUENCE OF
      ROS{{InvokeIdSet}, {OperationSet}, {OperationSet}},
  -- see 8.3; other alternatives may be defined in future versions
  ...
}

Notassignedlocalopcode ::= OCTET STRING -- Dummy assigment used

-- actual values are defined by individual supplementary service specifications 
-- (e.g. H.450.x or manufacturer specific)
-- 
-- END of H4501- Supplementary-ServiceAPDU-Structure
-- Imported : 
-- Module Addressing-Data-Elements (H.450.1:02/1998)
-- Addressing-Data-Elements {itu-t recommendation h 450 1 version1(0)
--   addressing-data-elements(9)} DEFINITIONS AUTOMATIC TAGS ::=
PresentedAddressScreened ::= CHOICE {
  presentationAllowedAddress           AddressScreened,
  presentationRestricted               NULL,
  numberNotAvailableDueToInterworking  NULL,
  presentationRestrictedAddress        AddressScreened,
  ...
}

PresentedAddressUnscreened ::= CHOICE {
  presentationAllowedAddress           Address,
  presentationRestricted               NULL,
  numberNotAvailableDueToInterworking  NULL,
  presentationRestrictedAddress        Address,
  ...
}

PresentedNumberScreened ::= CHOICE {
  presentationAllowedAddress           NumberScreened,
  presentationRestricted               NULL,
  numberNotAvailableDueToInterworking  NULL,
  presentationRestrictedAddress        NumberScreened,
  ...
}

PresentedNumberUnscreened ::= CHOICE {
  presentationAllowedAddress           PartyNumber,
  presentationRestricted               NULL,
  numberNotAvailableDueToInterworking  NULL,
  presentationRestrictedAddress        PartyNumber,
  ...
}

AddressScreened ::= SEQUENCE {
  partyNumber         PartyNumber,
  screeningIndicator  ScreeningIndicator,
  partySubaddress     PartySubaddress OPTIONAL,
  ...
}

NumberScreened ::= SEQUENCE {
  partyNumber         PartyNumber,
  screeningIndicator  ScreeningIndicator,
  ...
}

Address ::= SEQUENCE {
  partyNumber      PartyNumber,
  partySubaddress  PartySubaddress OPTIONAL,
  ...
}

-- PartyNumber defined in Recommendation H.225.0
-- PublicPartyNumber defined in Recommendation H.225.0
-- PrivatePartyNumber defined in Recommendation H.225.0
-- NumberDigits defined in Recommendation H.225.0
-- PublicTypeOfNumber defined in Recommendation H.225.0
-- PrivateTypeOfNumber defined in Recommendation H.225.0
-- PresentationIndicator defined in Recommendation H.225.0 (v3 and beyond)
-- ScreeningIndicator defined in Recommendation H.225.0 (v3 and beyond)
EndpointAddress ::= SEQUENCE {
  destinationAddress                              SEQUENCE OF AliasAddress,
  -- multiple alias addresses may be used to address the same H.323 endpoint
  remoteExtensionAddress                          AliasAddress OPTIONAL,
  ...,
  destinationAddressPresentationIndicator
    PresentationIndicator OPTIONAL,
  -- Note 1, 2
  destinationAddressScreeningIndicator            ScreeningIndicator OPTIONAL,
  remoteExtensionAddressPresentationIndicator
    PresentationIndicator OPTIONAL,
  -- Note 1, 2
  remoteExtensionAddressScreeningIndicator        ScreeningIndicator OPTIONAL
}

-- Note 1: If this element is not available, presentation allowed shall be assumed.
-- Note 2: If an H.450 APDU that carries this element EndpointAddress also
-- contains an element PresentationAllowedIndicator, then the setting of the
-- element PresentationAllowedIndicator shall take precedence in case of
-- conflicting presentation information.
PartySubaddress ::= CHOICE {
  userSpecifiedSubaddress  UserSpecifiedSubaddress,
  -- not recommended.
  nsapSubaddress           NSAPSubaddress,
  -- according to Recommendation X.213. 
  ...
}

UserSpecifiedSubaddress ::= SEQUENCE {
  subaddressInformation  SubaddressInformation,
  oddCountIndicator      BOOLEAN OPTIONAL,
  -- used when the coding of subaddress is BCD
  ...
}

NSAPSubaddress ::= OCTET STRING(SIZE (1..20))

-- specified according to X.213. Some networks may
-- limit the subaddress value to some other length
-- e.g. 4 octets
SubaddressInformation ::= OCTET STRING(SIZE (1..20))

-- coded according to user requirements. Some networks 
-- may limit the subaddress value to some other length
-- e.g. 4 octets
PresentationAllowedIndicator ::= BOOLEAN

--END 
-- of Addressing-Data-Elements

-- 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 ::=
--  Edited for ethereal purposes

CallTransferIdentify ::= DummyArg
CallTransferAbandon ::= DummyArg
CallTransferInitiate ::= DummyRes
CallTransferSetup ::= DummyRes
CallTransferUpdate ::= CTUpdateArg
SubaddressTransfer ::= SubaddressTransferArg
CallTransferComplete ::= CTCompleteArg
CallTransferActive ::= CTActiveArg

DummyArg ::= CHOICE {
  extensionSeq     ExtensionSeq,
  nonStandardData  NonStandardParameter
}
DummyRes ::= CHOICE {
  extensionSeq     ExtensionSeq,
  nonStandardData  NonStandardParameter
}

CTInitiateArg ::= SEQUENCE {
  callIdentity       CallIdentity,
  reroutingNumber    EndpointAddress,
  argumentExtension  ArgumentExtension OPTIONAL,
  ...
}
ArgumentExtension ::= CHOICE {extensionSeq     ExtensionSeq,
            nonStandardData  NonStandardParameter}

CTSetupArg ::= SEQUENCE {
  callIdentity        CallIdentity,
  transferringNumber  EndpointAddress OPTIONAL,
  argumentExtension   ArgumentExtension 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      ArgumentExtension OPTIONAL,
  ...
}

SubaddressTransferArg ::= SEQUENCE {
  redirectionSubaddress  PartySubaddress,
  argumentExtension      ArgumentExtension 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      ArgumentExtension 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      ArgumentExtension OPTIONAL,
  ...
}

CallIdentity ::= NumericString(SIZE (0..4))
-- size 0 means 'empty'

ExtensionSeq ::= SEQUENCE OF Extension
--END 
-- of Call-Transfer-Operations

-- Module Call-Diversion-Operations (H.450.3:02/1998)
--Call-Diversion-Operations {itu-t recommendation h 450 3 version1(0)
--  call-diversion-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)}
--  H225InformationElement
--    FROM H225-generic-parameters-definition {itu-t recommendation h 450 
--      1 version1(0) h225-generic-parameters(6)}
--  NonStandardParameter
--    FROM H323-MESSAGES
--  EndpointAddress, PartySubaddress, PresentationAllowedIndicator
--    FROM Addressing-Data-Elements {itu-t recommendation h 450 1 version1(0)
--      addressing-data-elements(9)}
--  userNotSubscribed, notAvailable, invalidServedUserNumber,
--    basicServiceNotProvided, resourceUnavailable,
--    supplementaryServiceInteractionNotAllowed
--    FROM H4501-General-Error-List {itu-t recommendation h 450 1 version1(0)
--      general-error-list(1)};
-- activateDiversionQ OPERATION ::=
--  { sent from the activating h.323-endpoint to the served h.323-endpoint
--  ARGUMENT
ActivateDiversionQArg ::=    SEQUENCE {procedure          Procedure,
              basicService       BasicService,
              divertedToAddress  EndpointAddress,
              servedUserNr       EndpointAddress,
              activatingUserNr   EndpointAddress,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
--  RESULT
ActivateDiversionQRes ::=
    CHOICE {extensionSeq     ExtensionSeq,
            nonStandardData  NonStandardParameter}

-- deactivateDiversionQ OPERATION ::=
--  {  sent from the deactivating h.323-endpoint to the served h.323-endpoint
--  ARGUMENT
DeactivateDiversionQArg ::=
    SEQUENCE {procedure           Procedure,
              basicService        BasicService,
              servedUserNr        EndpointAddress,
              deactivatingUserNr  EndpointAddress,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
--  RESULT
DeactivateDiversionQRes ::=
    CHOICE {extensionSeq     ExtensionSeq,
            nonStandardData  NonStandardParameter}
--  OPTIONAL  TRUE
--  ERRORS
--    {userNotSubscribed | notAvailable | invalidServedUserNumber |
--      temporarilyUnavailable | notAuthorized | unspecified}
--  CODE      local:16
--}

-- interrogateDiversionQ OPERATION ::=
--  {  sent from the interrogating h.323-endpoint to the served h.323-endpoint
--  ARGUMENT
InterrogateDiversionQ ::=   SEQUENCE {procedure            Procedure,
              basicService         BasicService DEFAULT allServices,
              servedUserNr         EndpointAddress,
              interrogatingUserNr  EndpointAddress,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
--  RESULT    IntResultList
InterrogateDiversionQRes ::= IntResultList

--  ERRORS
--    {userNotSubscribed | notAvailable | invalidServedUserNumber |
--      temporarilyUnavailable | notAuthorized | unspecified}
--  CODE      local:17
--}

-- checkRestriction OPERATION ::=
--  {  sent from the served h.323-endpoint to the diverted-to h.323-endpoint
--  ARGUMENT
CheckRestrictionArg ::=
    SEQUENCE {servedUserNr  EndpointAddress,
              basicService  BasicService,
              divertedToNr  EndpointAddress,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
 -- RESULT
CheckRestrictionRes ::=    CHOICE {extensionSeq     ExtensionSeq,
            nonStandardData  NonStandardParameter}
-- OPTIONAL  TRUE
--  ERRORS
--    {notAvailable | invalidServedUserNumber | invalidDivertedNumber |
--      specialServiceNumber | unspecified}
--  CODE      local:18
--}

-- callRerouting OPERATION ::=
--  {  sent from the served h.323-endpoint to the rerouting h.323-endpoint
--  ARGUMENT
CallReroutingArg ::=
    SEQUENCE {reroutingReason          DiversionReason,
              originalReroutingReason  DiversionReason OPTIONAL,
              calledAddress            EndpointAddress,
              diversionCounter         INTEGER(1..15),
              h225InfoElement          H225InformationElement,
              -- The H.225 information elements Bearer capability, 
              -- High layer compatibility, Low layer compatibility and 
              -- Progress Indicator information element may  be embedded 
              -- in the h225InfoElement in accordance with H.450.1. 
              lastReroutingNr          EndpointAddress,
              subscriptionOption       SubscriptionOption,
              callingPartySubaddress   PartySubaddress OPTIONAL,
              callingNumber            EndpointAddress,
              callingInfo              BMPString(SIZE (1..128)) OPTIONAL,
              originalCalledNr         EndpointAddress OPTIONAL,
              redirectingInfo          BMPString(SIZE (1..128)) OPTIONAL,
              originalCalledInfo       BMPString(SIZE (1..128)) OPTIONAL,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
--  RESULT
CallReroutingRes ::=    CHOICE {extensionSeq     ExtensionSeq,
            nonStandardData  NonStandardParameter}

--  OPTIONAL  TRUE
--  ERRORS
--    {userNotSubscribed | notAvailable | resourceUnavailable |
--      invalidDivertedNumber | specialServiceNumber |
--      diversionToServedUserNumber | numberOfDiversionsExceeded |
--      supplementaryServiceInteractionNotAllowed | unspecified}
--  CODE      local:19
-- }

-- divertingLegInformation1 OPERATION ::=
--  {  sent from the re-routing h.323-endpoint to the originating h.323-endpoint  
-- if the re-routing endpoint equals the originating endpoint, this operation 

  -- is not applicable; may also be sent from the rerouting endpoint to other 
  -- members of a conference, if subscription option allows. 
--  ARGUMENT
DivertingLegInformation1Arg ::=
    SEQUENCE {diversionReason     DiversionReason,
              subscriptionOption  SubscriptionOption,
              nominatedNr         EndpointAddress,
              nominatedInfo       BMPString(SIZE (1..128)) OPTIONAL,
              redirectingNr       EndpointAddress OPTIONAL,
              redirectingInfo     BMPString(SIZE (1..128)) OPTIONAL,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
 -- RETURN RESULT    FALSE
 -- ALWAYS RESPONDS  FALSE
 -- CODE             local:20
--}

-- divertingLegInformation2 OPERATION ::=
--  { sent from the re-routing h.323-endpoint to the diverted-to h.323-endpoint 
--  ARGUMENT
DivertingLegInformation2Arg ::=
    SEQUENCE {diversionCounter         INTEGER(1..15),
              diversionReason          DiversionReason,
              originalDiversionReason  DiversionReason OPTIONAL,
              divertingNr              EndpointAddress OPTIONAL,
              originalCalledNr         EndpointAddress OPTIONAL,
              redirectingInfo          BMPString(SIZE (1..128)) OPTIONAL,
              originalCalledInfo       BMPString(SIZE (1..128)) OPTIONAL,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
  -- The divertingNr element is mandatory except in the case of interworking
 -- RETURN RESULT    FALSE
 -- ALWAYS RESPONDS  FALSE
 -- CODE             local:21
--}

-- divertingLegInformation3 OPERATION ::= {
  --sent from the diverted-to h.323-endpoint to the originating h.323-endpoint
--  ARGUMENT
DivertingLegInformation3Arg ::=
    SEQUENCE {presentationAllowedIndicator  PresentationAllowedIndicator,
              redirectionNr                 EndpointAddress OPTIONAL,
              redirectionInfo               BMPString(SIZE (1..128)) OPTIONAL,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
--  RETURN RESULT    FALSE
--  ALWAYS RESPONDS  FALSE
--  CODE             local:22
--}

-- divertingLegInformation4 OPERATION ::= {
  -- If call diversion in not performed by the forwarding terminal but by a
  --  gatekeeper, the gatekeeper may send divertingLegInformation4 apdu to the 
  -- forwarding terminal. 
--  ARGUMENT
DivertingLegInformation4Arg ::=    SEQUENCE {diversionReason     DiversionReason,
              subscriptionOption  SubscriptionOption,
              callingNr           EndpointAddress,
              callingInfo         BMPString(SIZE (1..128)) OPTIONAL,
              nominatedNr         EndpointAddress,
              nominatedInfo       BMPString(SIZE (1..128)) OPTIONAL,
              extension
                CHOICE {extensionSeq     ExtensionSeq,
                        nonStandardData  NonStandardParameter} OPTIONAL,
              ...}
--  RETURN RESULT    FALSE
--  ALWAYS RESPONDS  FALSE
--  CODE             local:100
--}

-- cfnrDivertedLegFailed OPERATION ::=
--  {  sent from the rerouting h.323-terminal to the served  h.323-endpoint
--  ARGUMENT
CfnrDivertedLegFailedArg ::=
    CHOICE {extensionSeq     ExtensionSeq,
            nonStandardData  NonStandardParameter}
--  OPTIONAL         TRUE
--  RETURN RESULT    FALSE
--  ALWAYS RESPONDS  FALSE
--  CODE             local:23
-- }

-- This indicates that the diverted-to leg has been cleared during SS-CFNR execution.
-- Definitions of general used data types:
DiversionReason ::= ENUMERATED {unknown(0), cfu(1), cfb(2), cfnr(3), ...
                                }

-- The value unknown is only used if received from another network when interworking.
IntResultList ::= SET SIZE (0..29) OF IntResult

IntResult ::= SEQUENCE {
  servedUserNr       EndpointAddress,
  basicService       BasicService,
  procedure          Procedure,
  divertedToAddress  EndpointAddress,
  remoteEnabled      BOOLEAN DEFAULT FALSE,
  extension
    CHOICE {extensionSeq     ExtensionSeq,
            nonStandardData  NonStandardParameter} OPTIONAL,
  ...
}

Procedure ::= ENUMERATED {cfu(0), cfb(1), cfnr(2), ...
                          }

SubscriptionOption ::= ENUMERATED {
  noNotification(0), notificationWithoutDivertedToNr(1),
  notificationWithDivertedToNr(2), ...
  }

-- invalidDivertedNumber ERROR ::= {CODE  local:12
-- }

-- specialServiceNumber ERROR ::= {CODE  local:14
-- }

-- diversionToServedUserNumber ERROR ::= {CODE  local:15
-- }

-- numberOfDiversionsExceeded ERROR ::= {CODE  local:24
-- }

-- temporarilyUnavailable ERROR ::= {CODE  local:1000
-- }

-- notAuthorized ERROR ::= {CODE  local:1007
-- }

-- unspecified ERROR ::= {
--   PARAMETER
--     CHOICE {extension    Extension,
--             nonStandard  NonStandardParameter}
--   CODE       local:1008
-- }
-- BasicService defined for MWI should do for ethereal purposes
 -- BasicService ::= ENUMERATED {
 -- allServices(0),
  -- speech (1),
  -- unrestrictedDigitalInformation (2),
  -- audio3.1KHz (3),
  -- telephony (32),
  -- teletex (33),
  -- telefaxGroup4Class1 (34),
  -- videotexSyntaxBased (35),
  -- videotelephony (36), 
--  ...
--  }

-- For multimedia calls the value "allServices" shall be used only. 
-- The usage of the other codepoints for multimedia calls is for further study.
-- Defined elsewhere for ethereal
-- ExtensionSeq ::= SEQUENCE OF Extension
--
-- ExtensionSet EXTENSION ::=
--  {...}

-- Actual values defined by individual manufacturers
-- END 
-- of Call-Diversion-Operations

-- Module Call-Hold-Operations (H.450.4:05/1999)
-- Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
--   call-hold-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, invalidCallState, resourceUnavailable,
--     supplementaryServiceInteractionNotAllowed
--     FROM H4501-General-Error-List {itu-t recommendation h 450 1 version1(0)
--       general-error-list(1)}
--   NonStandardParameter
--     FROM H323-MESSAGES; 
-- see H.225.0

-- CallHoldOperations OPERATION ::=
--   {holdNotific | retrieveNotific | remoteHold | remoteRetrieve}

-- holdNotific OPERATION ::=
--   {  sent from holding to held H.323 endpoint to invoke near-end call hold feature
-- 
--   ARGUMENT         HoldNotificArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:101
-- }

HoldNotificArg ::= SEQUENCE {
  extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- retrieveNotific OPERATION ::=
--   {  sent from holding to held H.323 endpoint to invoke retrieval of near-end call hold feature

--   ARGUMENT         RetrieveNotificArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:102
-- }

RetrieveNotificArg ::= SEQUENCE {
  extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
 }

-- remoteHold OPERATION ::=
--   { sent from holding to held H.323 endpoint to invoke remote-end call hold feature

--   ARGUMENT  RemoteHoldArg
--   OPTIONAL  TRUE
--   RESULT    RemoteHoldRes
--   OPTIONAL  TRUE
--   ERRORS
--     {notAvailable
--       |  feature not available in combination with the basic service
--        invalidCallState |  hold not possible in current call state
--        resourceUnavailable |  maximum number of calls on hold reached
--        supplementaryServiceInteractionNotAllowed |
      
      -- other supplementary service prohibits hold
--       undefined -- -- undefined reason--
-- }
--   CODE      local:103
-- }

RemoteHoldArg ::= SEQUENCE {
  extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

RemoteHoldRes ::= SEQUENCE {
  extensionRes  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- remoteRetrieve OPERATION ::=
--   {  sent from holding to held H.323 endpoint to invoke retrieval of remote-end call hold feature

--   ARGUMENT  RemoteRetrieveArg
--   OPTIONAL  TRUE
--   RESULT    RemoteRetrieveRes
--   OPTIONAL  TRUE
--   ERRORS
--     {invalidCallState |
      
      -- Call to which retrieve request applies is not in state Hold_RE_Held
--       undefined --  -- undefined reason  } --
--   CODE      local:104
-- }

RemoteRetrieveArg ::= SEQUENCE {
  extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

RemoteRetrieveRes ::= SEQUENCE {
  extensionRes  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

MixedExtension ::= CHOICE {
  extension        Extension,
  nonStandardData  NonStandardParameter
}

-- ExtensionSet EXTENSION ::=
--   {...}

-- Actual values defined by individual manufacturers
-- undefined ERROR ::= {
--   PARAMETER  SEQUENCE SIZE (0..255) OF MixedExtension
--   OPTIONAL   TRUE
--   CODE       local:2002
-- }

-- END 
-- of Call-Hold-Operations



-- Module Call-Park-Pickup-Operations (H.450.5:05/1999)
-- Call-Park-Pickup-Operations {itu-t recommendation h 450 5 version1(0)
--   call-park-pickup-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, invalidCallState, resourceUnavailable,
--     supplementaryServiceInteractionNotAllowed
--     FROM H4501-General-Error-List {itu-t recommendation h 450 1 version1(0)
--       general-error-list(1)}
--   EndpointAddress
--     FROM Addressing-Data-Elements {itu-t recommendation h 450 1 version1(0)
--       addressing-data-elements(9)}
--   MixedExtension
--     FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
--       call-hold-operations(0)}
--   NonStandardParameter, CallIdentifier
--     FROM H323-MESSAGES; 
-- see H.225.0

-- CallParkPickupOperations OPERATION ::=
--   {cpRequest | cpSetup | groupIndicationOn | groupIndicationOff | pickrequ |
--    pickup | pickExe | cpNotify | cpickupNotify}

-- cpRequest OPERATION ::=
--   { sent from parking endpoint to the parked endpoint to invoke SS-PARK
--   ARGUMENT  CpRequestArg
--   RESULT    CpRequestRes
--   ERRORS
--     {notAvailable |
      
      -- feature not available in combination with the basic service
 --      invalidCallState |  call park not possible in current call state
 --       resourceUnavailable |  maximum number of parked calls reached
 --       supplementaryServiceInteractionNotAllowed |
      
      -- other supplementary service prohibits call park invocation
--       undefined undefined reason  } --
--   CODE      local:106
-- }

CpRequestArg ::= SEQUENCE {
  parkingNumber     EndpointAddress,
  parkedNumber      EndpointAddress,
  parkedToNumber    EndpointAddress,
  parkedToPosition  ParkedToPosition OPTIONAL,
  extensionArg      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

CpRequestRes ::= SEQUENCE {
  parkedToNumber    EndpointAddress,
  parkedToPosition  ParkedToPosition OPTIONAL,
  parkCondition     ParkCondition,
  extensionRes      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- cpSetup OPERATION ::= {   sent from parked endpoint to the parked-to endpoint 
--   ARGUMENT  CpSetupArg
--   RESULT    CpSetupRes
--   ERRORS
--     {notAvailable |
      
      -- feature not available in combination with the basic service
 --      invalidCallState |  call park not possible in current call state
 --       resourceUnavailable |  maximum number of parked calls reached
 --       supplementaryServiceInteractionNotAllowed |
      
      -- other supplementary service prohibits call park invocation
 --      undefined  undefined reason }
 --  CODE      local:107
-- }

CpSetupArg ::= SEQUENCE {
  parkingNumber     EndpointAddress,
  parkedNumber      EndpointAddress,
  parkedToNumber    EndpointAddress,
  parkedToPosition  ParkedToPosition OPTIONAL,
  extensionArg      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

CpSetupRes ::= SEQUENCE {
  parkedToNumber    EndpointAddress,
  parkedToPosition  ParkedToPosition OPTIONAL,
  parkCondition     ParkCondition,
  extensionRes      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- groupIndicationOn OPERATION ::=
--   { sent from the parked-to endpoint/alerting endpoint to the group members 
--   ARGUMENT  GroupIndicationOnArg
--   RESULT    GroupIndicationOnRes
--   ERRORS    {undefined undefined reason  } --
--   CODE      local:108
-- }

GroupIndicationOnArg ::= SEQUENCE {
  callPickupId       CallIdentifier,
  -- identification of the call to be retrieved (parked or alerting call);
  -- its value equals the value of the CallIdentifier as assigned for the parked/
  -- alerting call within Setup-UUIE
  groupMemberUserNr  EndpointAddress,
  retrieveCallType   CallType,
  partyToRetrieve    EndpointAddress, -- Parked or Calling User 
  retrieveAddress    EndpointAddress, -- parked-to or alerting entity address
  
  -- (may also be a GK, see 9.2)
  parkPosition       ParkedToPosition OPTIONAL,
  extensionArg       SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

GroupIndicationOnRes ::= SEQUENCE {
  extensionRes  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- groupIndicationOff OPERATION ::=
--   { sent from the parked-to endpoint/alerting endpoint to the group members 
--   ARGUMENT  GroupIndicationOffArg
--   RESULT    GroupIndicationOffRes
--   ERRORS
--     {invalidCallState |  group indication is not on
--        undefined undefined reason  } --
--   CODE      local:109
-- }

GroupIndicationOffArg ::= SEQUENCE {
  callPickupId       CallIdentifier,
  -- identification of the call that has been picked up (parked or alerting call)
  groupMemberUserNr  EndpointAddress,
  extensionArg       SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

GroupIndicationOffRes ::= SEQUENCE {
  extensionRes  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- pickrequ OPERATION ::= { sent from the picking-up user to the parked-to/
  -- alerting endpoint as part of the SS-PICKUP invocation
--   ARGUMENT  PickrequArg
--   RESULT    PickrequRes
--   ERRORS
--    {undefined |  undefined reason
      
--       callAlreadyPickedUp  call has already been picked up by another user }
--   CODE      local:110
-- }

PickrequArg ::= SEQUENCE {
  picking-upNumber  EndpointAddress,
  callPickupId      CallIdentifier OPTIONAL,
  -- identification of the call to be picked up (parked or alerting call), if known
  partyToRetrieve   EndpointAddress OPTIONAL, -- Parked or Calling User
  retrieveAddress   EndpointAddress, -- parked-to or alerting entity address
  parkPosition      ParkedToPosition OPTIONAL,
  extensionArg      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

PickrequRes ::= SEQUENCE {
  callPickupId  CallIdentifier,
  -- identification of the call that is being picked up (parked or alerting call), 
  -- if not sent in pickrequ invoke, it is assigned at the parked-to/alerting
  -- endpoint and reflects the CallIdentification of the parked/alerting call for
  -- later association with the pickExe invoke APDU. 
  extensionRes  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- pickup OPERATION ::=
--   { sent from the parked-to/alerting endpoint to the parked/calling endpoint
  -- after the picking-up user has invoked SS-PICKUP. The picking-up user may
  -- be local (i.e. parked-to/alerting endpoint equals picking-up
  -- endpoint) or may be remote (i.e. picking-up user is located at a
  -- remote picking-up endpoint having sent pickrequ invoke APDU to the
  -- parked-to/alerting endpoint). 
--   ARGUMENT  PickupArg
--   RESULT    PickupRes
--   ERRORS
--     {undefined |  undefined reason
      
--       callAlreadyPickedUp  call has already been picked up by another user }
--   CODE      local:111
-- }

PickupArg ::= SEQUENCE {
  callPickupId      CallIdentifier,
  -- identification of this call to be picked up (parked or alerting call); 
  -- equals the CallIdentifier value that was assigned to this call in Setup-UUIE
  picking-upNumber  EndpointAddress,
  extensionArg      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

PickupRes ::= SEQUENCE {
  extensionRes  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- pickExe OPERATION ::=
--   { sent from the parked/calling endpoint to the picking-up endpoint
--   ARGUMENT  PickExeArg
--   RESULT    PickExeRes
--   ERRORS
--     {undefined |  undefined reason
      
--       callPickupIdInvalid
      -- value not matching with the previous SS-PICKUP request
--       }
--   CODE      local:112
-- }

PickExeArg ::= SEQUENCE {
  callPickupId      CallIdentifier,
  -- identification of the parked/alerting call to be picked-up; 
  -- required at picking-up endpoint to associate the SS-PICKUP invoked with this
  -- incoming setup message carrying the pickExe invoke APDU.
  picking-upNumber  EndpointAddress,
  partyToRetrieve   EndpointAddress, -- Parked or Calling User
  extensionArg      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

PickExeRes ::= SEQUENCE {
  extensionRes  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- cpNotify OPERATION ::=
--   { sent from the parking-to to parked endpoint in case of local park.
--   ARGUMENT         CpNotifyArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:113
-- }

CpNotifyArg ::= SEQUENCE {
  parkingNumber  EndpointAddress OPTIONAL,
  extensionArg   SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- cpickupNotify OPERATION ::=
--   { sent from parked-to to parked endpoint in case of SS-PICKUP from local park

--   ARGUMENT         CpickupNotifyArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:114
-- }

CpickupNotifyArg ::= SEQUENCE {
  picking-upNumber  EndpointAddress OPTIONAL,
  extensionArg      SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

ParkedToPosition ::= INTEGER(0..65535)

ParkCondition ::= ENUMERATED {
  unspecified(0), parkedToUserIdle(1), parkedToUserBusy(2), parkedToGroup(3),
  ...
  }

CallType ::= ENUMERATED {parkedCall(0), alertingCall(1), ...
                         }

-- callPickupIdInvalid ERROR ::= {CODE  local:2000
-- }

-- callAlreadyPickedUp ERROR ::= {CODE  local:2001
-- }

-- undefined ERROR ::= {
--   PARAMETER  SEQUENCE SIZE (0..255) OF MixedExtension
--   OPTIONAL   TRUE
--   CODE       local:2002
-- }

-- END 
-- of Call-Park-Pickup-Operations

-- Module Call-Waiting-Operations (H.450.6:05/1999)
-- Call-Waiting-Operations {itu-t recommendation h 450 6 version1(0)
--   call-waiting-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)}
--   MixedExtension
--     FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
--       call-hold-operations(0)};

-- CallWaitingOperations OPERATION ::= {callWaiting}

-- callWaiting OPERATION ::=
--   {  sent from served endpoint to the calling endpoint in ALERTING message
--   ARGUMENT         CallWaitingArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:105
-- }

CallWaitingArg ::= SEQUENCE {
  nbOfAddWaitingCalls  INTEGER(0..255) OPTIONAL,
  -- indicates the number of waiting calls at the served user 
  -- in addition to the call to which this operation applies.
  extensionArg         SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- END 
-- of Call-Waiting-Operations


-- Module Message-Waiting-Indication-Operations (H.450.7:05/1999)
--Message-Waiting-Indication-Operations {itu-t recommendation h 450 7 version1(0)
--  message-waiting-operations(0)} DEFINITIONS AUTOMATIC TAGS ::=
--H323-MWI-Operations OPERATION ::=
--  {mwiActivate | mwiDeactivate | mwiInterrogate}

MwiActivate ::= MWIActivateArg
MwiDeactivate ::= MWIDeactivateArg

MwiInterrogate ::= MWIInterrogateArg

MWIActivateArg ::= SEQUENCE {
  servedUserNr   EndpointAddress,
  basicService   BasicService,
  msgCentreId    MsgCentreId OPTIONAL,
  nbOfMessages   NbOfMessages OPTIONAL,
  originatingNr  EndpointAddress OPTIONAL,
  timestamp      TimeStamp OPTIONAL,
  priority       INTEGER(0..9) OPTIONAL,
  -- the value 0 means the highest priority and 9 the lowest
  extensionArg   ExtensionArg OPTIONAL,
  ...
}

MwiDummyRes ::= SEQUENCE SIZE (0..255) OF MixedExtension

MWIDeactivateArg ::= SEQUENCE {
  servedUserNr  EndpointAddress,
  basicService  BasicService,
  msgCentreId   MsgCentreId OPTIONAL,
  callbackReq   BOOLEAN OPTIONAL,
  extensionArg  ExtensionArg OPTIONAL,
  ...
}

MWIInterrogateArg ::= SEQUENCE {
  servedUserNr  EndpointAddress,
  basicService  BasicService,
  msgCentreId   MsgCentreId OPTIONAL,
  callbackReq   BOOLEAN OPTIONAL,
  extensionArg  ExtensionArg OPTIONAL,
  ...
}

MWIInterrogateRes ::= SEQUENCE SIZE (1..64) OF MWIInterrogateResElt

MWIInterrogateResElt ::= SEQUENCE {
  basicService   BasicService,
  msgCentreId    MsgCentreId OPTIONAL,
  nbOfMessages   NbOfMessages OPTIONAL,
  originatingNr  EndpointAddress OPTIONAL,
  timestamp      TimeStamp OPTIONAL,
  priority       INTEGER(0..9) OPTIONAL,
  -- the value 0 means the highest priority and 9 the lowest
  extensionArg   ExtensionArg OPTIONAL,
  ...
}

MsgCentreId ::= CHOICE {
  -- only partyNumber provides a callable identification
  integer        INTEGER(0..65535),
  mwipartyNumber    EndpointAddress,
  numericString  NumericString(SIZE (1..10))
}

NbOfMessages ::= INTEGER(0..65535)

TimeStamp ::= GeneralizedTime(SIZE (12..19))

ExtensionArg ::= SEQUENCE SIZE (0..255) OF MixedExtension

-- a VisibleString representation of date and time following ISO 8601 
-- containing:
--	- the (local) date in 8 digits (YYYYMMDD),
--	- followed by (local) time of day in 4 or 6 digits [HHMM(SS)],
--	-	optionally followed by the letter "Z" or by a local time differential 
--		from UTC time in 5 digits ("+"HHMM or "-"HHMM);
-- Examples:
--	1) 19970621194530, meaning 21 June 1997, 19:45:30;
--	2) 19970621194530Z, meaning the same as 1);
--	3) 19970621194530-0500, meaning the same as 1), 
--		5 hours retarded in relation to UTC time
--undefined ERROR ::= {
--  PARAMETER  SEQUENCE SIZE (0..255) OF MixedExtension
--  OPTIONAL   TRUE
--  CODE       local:2002
--}

--invalidMsgCentreId ERROR ::=
--  {  returned by a Message Centre endpoint when an unknown Message 
  -- Centre Identifier is specified in a mwiInterrogate invoke
--  CODE  local:1018
--}

BasicService ::= ENUMERATED {
  -- MWI Services:
  --	for compatibility among vendors, speech is recommended for voice mail
  --	indications
  allServices(0), speech(1), unrestrictedDigitalInformation(2), audio3100Hz(3),
  telephony(32), teletex(33), telefaxGroup4Class1(34), videotexSyntaxBased(35),
  videotelephony(36), telefaxGroup2-3(37), reservedNotUsed1(38),
  reservedNotUsed2(39), reservedNotUsed3(40), reservedNotUsed4(41),
  reservedNotUsed5(42),
  --
  -- MWI Service Classes:
  email(51), video(52), fileTransfer(53), shortMessageService(54),
  speechAndVideo(55), speechAndFax(56), speechAndEmail(57), videoAndFax(58),
  videoAndEmail(59), faxAndEmail(60), speechVideoAndFax(61),
  speechVideoAndEmail(62), speechFaxAndEmail(63), videoFaxAndEmail(64),
  speechVideoFaxAndEmail(65), multimediaUnknown(66),
  serviceUnknown(67),
  --
  -- Reserved for future additions:
  futureReserve1(68), futureReserve2(69), futureReserve3(70),
  futureReserve4(71), futureReserve5(72), futureReserve6(73),
  futureReserve7(74), futureReserve8(75)}

-- notActivated ERROR ::= {CODE  local:31
-- }

--END 
-- of Message-Waiting-Indication-Operations

-- Module Name-Operations (H.450.8:02/2000)
-- Name-Operations {itu-t recommendation h 450 8 version1(0) name-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)}
--   MixedExtension
--     FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
--       call-hold-operations(0)};

-- NameOperations OPERATION ::=
--   {callingName | alertingName | connectedName | busyName}

-- callingName OPERATION ::= {
--   ARGUMENT
--     SEQUENCE {name          Name,
--               extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
--              ...}
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:0
-- }

-- alertingName OPERATION ::= {
--   ARGUMENT
--     SEQUENCE {name          Name,
--               extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
--              ...}
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:1
-- }

-- connectedName OPERATION ::= {
--   ARGUMENT
--     SEQUENCE {name          Name,
--               extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
--               ...}
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:2
-- }


-- busyName OPERATION ::= {
--   ARGUMENT
--     SEQUENCE {name          Name,
--               extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
--               ...}
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:3
-- }
-- It all translates to NameArg doesn't it ?

NameArg ::= SEQUENCE {name          Name,
               extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
               ...}

Name ::= CHOICE {
  namePresentationAllowed     NamePresentationAllowed,
  namePresentationRestricted  NamePresentationRestricted,
  nameNotAvailable            NULL,
  ...
}

NamePresentationAllowed ::= CHOICE {
  simpleName    SimpleName,
  extendedName  ExtendedName,
  ...
}

NamePresentationRestricted ::= CHOICE {
  simpleName      SimpleName,
  extendedName    ExtendedName,
  restrictedNull  NULL, -- only used in case of interworking where other network
  
  -- provides indication that the name is restricted without
  -- the name itself
  ...
}

SimpleName ::= OCTET STRING(SIZE (1..50))

ExtendedName ::= BMPString(SIZE (1..256)) -- Basic ISO/IEC 10646-1 (Unicode)
                          
-- 
-- END 
-- of Name-Operations
-- Module Call-Completion-Operations (H.450.9:11/2000)
-- Call-Completion-Operations {itu-t recommendation h 450 9 version1(0)
--   call-completion-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)}
--   CallIdentifier
--     FROM H323-MESSAGES see ITU-T H.225.0
--       
--   EndpointAddress
--     FROM Addressing-Data-Elements {itu-t recommendation h 450 1 version1(0)
--       addressing-data-elements(9)}
--   MixedExtension, undefined
--     FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
--       call-hold-operations(0)}
--   supplementaryServiceInteractionNotAllowed
--     FROM H4501-General-Error-List {itu-t recommendation h 450 1 version1(0)
--       general-error-list(1)}
--   BasicService
--     FROM Message-Waiting-Indication-Operations {itu-t recommendation h 
--       450 7 version1(0) message-waiting-operations(0)};

-- H323CallCompletionOperations OPERATION ::=
--   {ccbsRequest | ccnrRequest | ccCancel | ccExecPossible | ccRingout |
--    ccSuspend | ccResume}

-- ccbsRequest OPERATION ::= {
--   ARGUMENT  CcRequestArg
--   RESULT    CcRequestRes
--   ERRORS
--     {shortTermRejection | longTermRejection | undefined |
--       supplementaryServiceInteractionNotAllowed}
--   CODE      local:40
-- }

-- ccnrRequest OPERATION ::= {
--   ARGUMENT  CcRequestArg
--   RESULT    CcRequestRes
--   ERRORS
--     {shortTermRejection | longTermRejection | undefined |
--       supplementaryServiceInteractionNotAllowed}
--   CODE      local:27
-- }

-- ccCancel OPERATION ::= {
--   ARGUMENT         CcArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:28
-- }

-- ccExecPossible OPERATION ::= {
--   ARGUMENT         CcArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:29
-- }

-- ccRingout OPERATION ::= {
--   ARGUMENT       CcShortArg
--   OPTIONAL       TRUE
--   RETURN RESULT  FALSE
--   ERRORS         {remoteUserBusyAgain | failureToMatch | undefined}
--   CODE           local:31
-- }

-- ccSuspend OPERATION ::= {
--   ARGUMENT         CcShortArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:32
-- }

-- ccResume OPERATION ::= {
--   ARGUMENT         CcArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:33
-- }

CcRequestArg ::= SEQUENCE {
  numberA                EndpointAddress,
  numberB                EndpointAddress,
  ccIdentifier           CallIdentifier OPTIONAL,
  -- If present, it shall be used as the prime mechanism for associating 
  -- the unsuccessful call, the CC Request and the CC Call.
  service                BasicService,
  can-retain-service     BOOLEAN,
  retain-sig-connection  BOOLEAN OPTIONAL,
  extension              SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

CcRequestRes ::= SEQUENCE {
  retain-service  BOOLEAN,
  extension       SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

CcArg ::= CHOICE {
  shortArg  CcShortArg, -- if signalling conection is retained
  longArg   CcLongArg, -- if connection release option applies
  ...
}

CcShortArg ::= SEQUENCE {
  ccIdentifier  CallIdentifier OPTIONAL,
  extension     SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

CcLongArg ::= SEQUENCE {
  numberA       EndpointAddress OPTIONAL,
  numberB       EndpointAddress OPTIONAL,
  ccIdentifier  CallIdentifier OPTIONAL,
  service       BasicService OPTIONAL,
  -- these elements are used to identify the proper CC Request. 
  -- The ccIdentifier if present shall be the prime mechanism for this purpose.
  extension     SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- shortTermRejection ERROR ::= {CODE  local:1010
-- }

-- longTermRejection ERROR ::= {CODE  local:1011
-- }

-- remoteUserBusyAgain ERROR ::= {CODE  local:1012
-- }

-- failureToMatch ERROR ::= {CODE  local:1013
-- }

-- END 
-- of Call-Completion-Operations

-- Module Call-Offer-Operations (H.450.10:03/2001)
-- Call-Offer-Operations {itu-t recommendation h 450 10 version1(0)
--   call-offer-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)}
--   MixedExtension
--     FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
--       call-hold-operations(0)}
--   callWaiting
--     FROM Call-Waiting-Operations {itu-t recommendation h 450 6 version1(0)
--       call-waiting-operations(0)};

-- H323CallOfferOperations OPERATION ::=
--   {callOfferRequest | callWaiting | remoteUserAlerting | cfbOverride}

-- callOfferRequest OPERATION ::= sent from calling to called endpoint
--    {
--   ARGUMENT         CoReqOptArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:34
-- }

-- remoteUserAlerting OPERATION ::=  sent from called to calling endpoint
--    {
--   ARGUMENT         RUAlertOptArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:115
-- }

-- cfbOverride OPERATION ::=  sent from calling to called endpoint
--    {
--   ARGUMENT         CfbOvrOptArg
--   OPTIONAL         TRUE
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:49
-- }

CoReqOptArg ::= SEQUENCE {
  extension  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

RUAlertOptArg ::= SEQUENCE {
  extension  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

CfbOvrOptArg ::= SEQUENCE {
  extension  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

-- END 
-- of Call-Offer-Operations
-- 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

-- Module Common-Information-Operations (H.450.12:07/2001)
-- Common-Information-Operations {itu-t recommendation h 450 12 version1(0)
--   common-information-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)}
--   MixedExtension, undefined
--     FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
--       call-hold-operations(0)};

-- H323CommonInformationOperations OPERATION ::= {cmnRequest | cmnInform}

-- cmnRequest OPERATION ::= {
--   ARGUMENT  DummyArg  used as CmnRequestArg ( Ethereal )
--   OPTIONAL  TRUE
--   RESULT    CmnArg
--   ERRORS    {undefined}
--   CODE      local:84
-- }

-- cmnInform OPERATION ::= {
--   ARGUMENT         CmnArg
--   RETURN RESULT    FALSE
--   ALWAYS RESPONDS  FALSE
--   CODE             local:85
-- }

CmnArg ::= SEQUENCE {
  featureList     FeatureList OPTIONAL,
  featureValues   FeatureValues OPTIONAL,
  featureControl  FeatureControl OPTIONAL,
  extension       SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
  ...
}

CmnRequestArg ::= SEQUENCE {
  extensionArg  SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL
}

FeatureList ::= SEQUENCE {
  -- indicates capabilities of the endpoint sending the FeatureList
  ssCFreRoutingSupported         NULL OPTIONAL, -- Call Forwarding rerouting
  
  -- supported meaningful only in
  -- forward direction during call
  -- establishment 
  ssCTreRoutingSupported         NULL OPTIONAL, -- Call Transfer rerouting
  
  -- supported meaningful both in
  -- forward & backward direction
  -- during call establishment 
  ssCCBSPossible                 NULL OPTIONAL, -- CCBS possible meaningful only
  
  -- in backward direction before
  -- receipt of ALERTING/CONNECT 
  ssCCNRPossible                 NULL OPTIONAL, -- CCNR possible meaningful only
  
  -- in backward direction before
  -- receipt of CONNECT 
  ssCOSupported                  NULL OPTIONAL, -- Call Offer supported
  
  -- meaningful only in backward
  -- direction during call
  -- establishment 
  -- Call Intrusion
  ssCIForcedReleaseSupported     NULL OPTIONAL, -- meaningful only in
  
  -- backward direction 
  ssCIIsolationSupported         NULL OPTIONAL, -- meaningful only in
  
  -- backward direction 
  ssCIWaitOnBusySupported        NULL OPTIONAL, -- meaningful only in
  
  -- backward direction 
  ssCISilentMonitoringSupported  NULL OPTIONAL, -- meaningful only in
  
  -- backward direction 
  ssCIConferenceSupported        NULL OPTIONAL, -- meaningful only in
  
  -- backward direction 
  -- Call Hold
  ssCHFarHoldSupported           NULL OPTIONAL, -- meaningful in both
  
  -- directions
  -- Message Waiting Callback
  ssMWICallbackSupported         NULL OPTIONAL, -- meaningful in backward
  
  -- direction
  -- meaningful both in
  -- forward & backward
  -- direction during call
  -- establishment
  -- Call Park
  ssCPCallParkSupported          NULL OPTIONAL, -- meaningful in both
  
  -- directions
  ...
}

FeatureValues ::= SEQUENCE {
  partyCategory        PartyCategory OPTIONAL,
  ssCIprotectionLevel  SSCIProtectionLevel OPTIONAL,
  -- Supplementary Service Call Intrusion Protection level
  -- meaningful both in forward and backward direction; inclusion
  -- indicates support of SS-CI as an unwanted endpoint (forward 
  -- direction) or as a Terminating  Endpoint (backward direction),
  -- as well as the applicable protection level.
  ...
}

PartyCategory ::= ENUMERATED {unknown, extension, attendant, emergExt, ...
                              }

SSCIProtectionLevel ::= INTEGER(0..3)

FeatureControl ::= SEQUENCE {
  ssCHDoNotHold               NULL OPTIONAL, -- meaningful in both directions
  
  -- Sending endpoint shall not be held
  ssCTDoNotTransfer           NULL OPTIONAL, -- meaningful in both directions
  
  -- sending endpoint shall not be transferred
  ssMWICallbackCall           NULL OPTIONAL, -- meaningful only in SETUP 
  
  -- indicating a callback call
  ssCISilentMonitorPermitted  NULL OPTIONAL, -- unwanted endpoint
  
  -- allows for 
  -- silent monitoring
  -- meaningful in forward and backward direction
  ...
}

-- END 
-- of Common-Information-Operations




--
-- Module Manufacturer-specific-service-extension-definition (H.450.1:02/1998)
-- Manufacturer-specific-service-extension-definition {itu-t recommendation 
--  h 450 1 version1(0) msi-definition(18)} DEFINITIONS AUTOMATIC TAGS ::=
-- BEGIN

-- Actual values defined by individual manufacturers
Unspecified ::= 
    CHOICE {extension    Extension,
            nonStandard  NonStandardParameter}

-- 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
-- Module H225-generic-parameters-definition (H.450.1:02/1998)
-- H225-generic-parameters-definition {itu-t recommendation h 450 1 version1(0)
--  h225-generic-parameters(6)} DEFINITIONS AUTOMATIC TAGS ::=

H225InformationElement ::= OCTET STRING

--END 
-- of H225 Generic parameters definition
-- Module Manufacturer-specific-service-extension-definition (H.450.1:02/1998)


-- Manufacturer-specific-service-extension-definition {itu-t recommendation 
--   h 450 1 version1(0) msi-definition(18)} DEFINITIONS AUTOMATIC TAGS ::=
-- BEGIN

-- EXTENSION ::= CLASS {&ArgumentType  ,
--                     &extensionId   OBJECT IDENTIFIER
-- }WITH SYNTAX {ARGUMENT &ArgumentType
--              IDENTIFIER &extensionId
-- }

-- Extension{EXTENSION:ExtensionSet} ::= SEQUENCE {
--  extensionId        EXTENSION.&extensionId({ExtensionSet}),
--  extensionArgument  EXTENSION.&ArgumentType({ExtensionSet}{@extensionId})
--}
-- Ethereal adaptation NEEDS VERIFICATION !
 Extension ::= SEQUENCE {
  extensionId        OBJECT IDENTIFIER,
  extensionArgument  ExtensionArgument
  }
ExtensionArgument ::= OCTET STRING

-- ExtensionSet is a set of objects of class EXTENSION.
-- Actual values of ExtensionSet are defined by the individual manufacturers. 
-- Element extensionId is constrained to be the identifier of an object from that set.
-- Element extensionArgument is constrained to be the argument type for that particular
-- object.
-- END 
-- of Manufacturer-specific-service-extension-definition

END -- of H4501- Supplementary-ServiceAPDU-Structure 

-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D