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
|
-- Module GCC-PROTOCOL (T.124:01/2007)
-- See also ITU-T T.124 (01/2007)
-- See also the index of all ASN.1 assignments needed in this document
GCC-PROTOCOL {itu-t(0) recommendation(0) t(20) t124(124) version(0) 2 asn1Modules(2) gcc-protocol(1)}
DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
-- Export all symbols
-- =============================================================================
-- Part 1: Elements of which messages are composed
-- =============================================================================
ChannelID ::= INTEGER(1..65535)
StaticChannelID ::= INTEGER(1..1000)
-- Those assigned by specifications
DynamicChannelID ::= INTEGER(1001..65535)
-- Those created and deleted by MCS
UserID ::= DynamicChannelID
TokenID ::= INTEGER(1..65535)
StaticTokenID ::= INTEGER(1..16383)
-- Those assigned by specifications
DynamicTokenID ::= INTEGER(16384..65535)
-- Those assigned by the registry
Time ::= INTEGER(-2147483648..2147483647)
-- Time in seconds
Handle ::= INTEGER(0..4294967295)
-- 32-bit value
H221NonStandardIdentifier ::= OCTET STRING(SIZE (4..255))
-- First four octets shall be country code and
-- Manufacturer code, assigned as specified in
-- Annex A/H.221 for NS-cap and NS-comm
Key ::= CHOICE -- Identifier of a standard or non-standard object
{
object OBJECT IDENTIFIER,
h221NonStandard H221NonStandardIdentifier
}
NonStandardParameter ::= SEQUENCE {key Key,
data OCTET STRING
}
TextString ::= BMPString(SIZE (0..255))
-- Basic Multilingual Plane of ISO/IEC 10646-1 (Unicode)
--simpleTextFirstCharacter UniversalString ::=
-- {0, 0, 0, 0}
--simpleTextLastCharacter UniversalString ::= {0, 0, 0, 255}
SimpleTextString ::=
BMPString(SIZE (0..255))
-- (FROM (simpleTextFirstCharacter..simpleTextLastCharacter))
SimpleNumericString ::= NumericString(SIZE (1..255))(FROM ("0123456789"))
DiallingString ::= NumericString(SIZE (1..16))(FROM ("0123456789"))
SubAddressString ::= NumericString(SIZE (1..40))(FROM ("0123456789"))
ExtraDiallingString ::= TextString(SIZE (1..255))(FROM ("0123456789#*,"))
UserData ::= SET OF SEQUENCE {key Key,
value OCTET STRING OPTIONAL}
Password ::= SEQUENCE {
numeric SimpleNumericString,
text SimpleTextString OPTIONAL,
...,
unicodeText TextString OPTIONAL
}
PasswordSelector ::= CHOICE {
numeric SimpleNumericString,
text SimpleTextString,
...,
unicodeText TextString
}
ChallengeResponseItem ::= CHOICE {
passwordString PasswordSelector,
responseData UserData,
...
}
ChallengeResponseAlgorithm ::= CHOICE {
passwordInTheClear NULL,
nonStandardAlgorithm NonStandardParameter,
...
}
ChallengeItem ::= SEQUENCE {
responseAlgorithm ChallengeResponseAlgorithm,
challengeData UserData,
...
}
ChallengeRequest ::= SEQUENCE {
challengeTag INTEGER,
challengeSet SET OF ChallengeItem,
-- Set of algorithms offered for response
...
}
ChallengeResponse ::= SEQUENCE {
challengeTag INTEGER,
responseAlgorithm ChallengeResponseAlgorithm,
-- Specific algorithm selected from the set of
-- items presented in the ChallengeRequest
responseItem ChallengeResponseItem,
...
}
PasswordChallengeRequestResponse ::= CHOICE {
passwordInTheClear PasswordSelector,
challengeRequestResponse
SEQUENCE {challengeRequest ChallengeRequest OPTIONAL,
challengeResponse ChallengeResponse OPTIONAL,
...},
...
}
ConferenceName ::= SEQUENCE {
numeric SimpleNumericString,
text SimpleTextString OPTIONAL,
...,
unicodeText TextString OPTIONAL
}
ConferenceNameSelector ::= CHOICE {
numeric SimpleNumericString,
text SimpleTextString,
...,
unicodeText TextString
}
ConferenceNameModifier ::= SimpleNumericString
Privilege ::= ENUMERATED {
terminate(0), ejectUser(1), add(2), lockUnlock(3), transfer(4), ...
}
TerminationMethod ::= ENUMERATED {automatic(0), manual(1), ...
}
ConferencePriorityScheme ::= CHOICE {
nonStandardScheme NonStandardParameter,
...
}
ConferencePriority ::= SEQUENCE {
priority INTEGER(0..65535),
scheme ConferencePriorityScheme,
...
}
NodeCategory ::= CHOICE {
conventional NULL,
counted NULL,
anonymous NULL,
nonStandardCategory NonStandardParameter,
...
}
ConferenceMode ::= CHOICE {
conventional-only NULL,
counted-only NULL,
anonymous-only NULL,
conventional-control NULL,
unrestricted-mode NULL,
non-standard-mode NonStandardParameter,
...
}
NetworkAddress ::=
SEQUENCE (SIZE (1..64)) OF
CHOICE -- Listed in order of use
{aggregatedChannel
SEQUENCE {transferModes
SEQUENCE-- One or more-- {speech BOOLEAN,
voice-band BOOLEAN,
digital-56k BOOLEAN,
digital-64k BOOLEAN,
digital-128k BOOLEAN,
digital-192k BOOLEAN,
digital-256k BOOLEAN,
digital-320k BOOLEAN,
digital-384k BOOLEAN,
digital-512k BOOLEAN,
digital-768k BOOLEAN,
digital-1152k BOOLEAN,
digital-1472k BOOLEAN,
digital-1536k BOOLEAN,
digital-1920k BOOLEAN,
packet-mode BOOLEAN,
frame-mode BOOLEAN,
atm BOOLEAN,
...},
internationalNumber DiallingString,
subAddress SubAddressString OPTIONAL,
extraDialling ExtraDiallingString OPTIONAL,
highLayerCompatibility
SEQUENCE {telephony3kHz BOOLEAN,
telephony7kHz BOOLEAN,
videotelephony BOOLEAN,
videoconference BOOLEAN,
audiographic BOOLEAN,
audiovisual BOOLEAN,
multimedia BOOLEAN,
...} OPTIONAL,
...},
transportConnection
SEQUENCE {nsapAddress OCTET STRING(SIZE (1..20)),
transportSelector OCTET STRING OPTIONAL},
nonStandard NonStandardParameter,
...}
MediaList ::= SEQUENCE {audio BOOLEAN,
video BOOLEAN,
data BOOLEAN,
...
}
ChannelAggregationMethod ::= CHOICE {
h221 NULL,
h244 NULL,
iso-iec-13871 NULL,
-- The actual mode of bonding is dynamically selected according
-- to the procedures described in ISO/IEC 13871.
nonStandard NonStandardParameter,
...
}
Profile ::= CHOICE {
simpleProfile
CHOICE {-- Basic transfer modes:
speech NULL, -- Simple telephony--
telephony-3kHz NULL, -- Rec. G.711--
telephony-7kHz NULL, -- Rec. G.722--
voice-band NULL, -- Modems--
frameRelay NULL,
-- T.120-only data profiles (Rec. T.123):
t123-pstn-basic NULL,
t123-psdn-basic NULL,
t123-b-isdn-basic NULL},
multimediaProfile
SEQUENCE {profile
CHOICE {h310 NULL,
h320 NULL,
h321 NULL,
h322 NULL,
h323 NULL,
h324 NULL,
h324m NULL,
asvd NULL,
dsvd NULL},
t120Data BOOLEAN},
dsmccDownloadProfile NULL,
nonStandard NonStandardParameter,
...
}
ExtendedE164NetworkAddress ::= SEQUENCE {
internationalNumber DiallingString,
subAddress SubAddressString OPTIONAL,
extraDialling ExtraDiallingString OPTIONAL,
...
}
TransportAddress ::= SEQUENCE {
nsapAddress OCTET STRING(SIZE (1..20)),
transportSelector OCTET STRING OPTIONAL
}
GSTNConnection ::= SEQUENCE {networkAddress ExtendedE164NetworkAddress,
...
}
ISDNConnection ::= SEQUENCE {
circuitTypes
SET OF
CHOICE {digital-64k NULL,
digital-2x64k NULL,
digital-384k NULL,
digital-1536 NULL,
digital-1920k NULL,
multirate-base-64k INTEGER(1..30) -- See Note 1 --},
networkAddress ExtendedE164NetworkAddress,
highLayerCompatibility
SEQUENCE {-- Those are supported code points for IE HLC of the D
-- protocol (Rec. Q.931).
telephony3kHz BOOLEAN,
telephony7kHz BOOLEAN,
videotelephony BOOLEAN,
videoconference BOOLEAN,
audiographic BOOLEAN,
audiovisual BOOLEAN,
multimedia BOOLEAN,
...} OPTIONAL,
...
}
-- Note 1: digital-2x64k differs from multirate-base-64k
-- with a multiplier value of 2;
-- in the first case
-- the network is requested an 8 kHz integrity with Restricted
-- Differential Time Delay (RDTD);
-- in the second case
-- the network is requested a Time Slot
-- Sequence integrity (see 4.5.5/Q.931)
CSDNConnection ::= SEQUENCE {
circuitTypes SET OF CHOICE {digital-56k NULL,
digital-64k NULL},
networkAddress ExtendedE164NetworkAddress,
...
}
PSDNConnection ::= SEQUENCE {
networkAddress
CHOICE {extendedE164NetworkAddress ExtendedE164NetworkAddress,
transportAddress TransportAddress,
nonStandard NonStandardParameter},
...
}
ATMConnection ::= SEQUENCE {
networkAddress
CHOICE {extendedE164 ExtendedE164NetworkAddress,
nsapAddress TransportAddress,
-- this case is reserved for NSAPs only: the
-- optional transport selector shall never be used
nonStandard NonStandardParameter},
maxTransferRate INTEGER(0..MAX) OPTIONAL,
-- in cells per seconds
...
}
NetworkConnection ::= CHOICE {
gstnConnection GSTNConnection,
isdnConnection ISDNConnection,
csdnConnection CSDNConnection,
psdnConnection PSDNConnection,
atmConnection ATMConnection,
extendedE164NetworkAddress ExtendedE164NetworkAddress,
-- Note: LAN connections and leased
transportAddress TransportAddress,
-- lines (Rec. G.703/G.704) may be
nonStandard NonStandardParameter,
-- covered by one of these
...
}
NetworkAddressV2 ::=
SET OF
SEQUENCE {networkConnection
CHOICE {singleConnection NetworkConnection,
aggregatedConnections
SEQUENCE {connectionList
SET (SIZE (1..30)) OF
CHOICE {isdnConnection ISDNConnection,
csdnConnection CSDNConnection,
...},
aggregationMethods
SET OF ChannelAggregationMethod OPTIONAL,
...}},
profiles SET OF Profile OPTIONAL,
mediaConcerned MediaList OPTIONAL,
...}
NodeType ::= ENUMERATED {terminal(0), multiportTerminal(1), mcu(2), ...
}
NodeProperties ::= SEQUENCE {
managementDevice BOOLEAN,
-- Is the node a device such as a reservation system
peripheralDevice BOOLEAN,
-- Is the node a peripheral to a primary node
...
}
AsymmetryIndicator ::= CHOICE {
callingNode NULL,
calledNode NULL,
unknown INTEGER(0..4294967295)
-- Uniformly distributed 32-bit random number
}
AlternativeNodeID ::= CHOICE {h243NodeID OCTET STRING(SIZE (2)),
...
}
ConferenceDescriptor ::= SEQUENCE {
conferenceName ConferenceName,
conferenceNameModifier ConferenceNameModifier OPTIONAL,
conferenceDescription TextString OPTIONAL,
lockedConference BOOLEAN,
passwordInTheClearRequired BOOLEAN,
networkAddress NetworkAddress OPTIONAL,
...,
defaultConferenceFlag BOOLEAN,
conferenceMode ConferenceMode
}
NodeRecord ::= SEQUENCE {
superiorNode UserID OPTIONAL,
-- Not present only for the Top GCC Provider
nodeType NodeType,
nodeProperties NodeProperties,
nodeName TextString OPTIONAL,
participantsList SEQUENCE OF TextString OPTIONAL,
siteInformation TextString OPTIONAL,
networkAddress NetworkAddress OPTIONAL,
alternativeNodeID AlternativeNodeID OPTIONAL,
userData UserData OPTIONAL,
...,
nodeCategory NodeCategory OPTIONAL,
networkAddressV2 NetworkAddressV2 OPTIONAL
}
SessionKey ::= SEQUENCE
{
applicationProtocolKey Key,
sessionID ChannelID OPTIONAL
}
ChannelType ::= ENUMERATED {
static(0), dynamicMulticast(1), dynamicPrivate(2), dynamicUserId(3)
}
ApplicationRecord ::= SEQUENCE {
applicationActive BOOLEAN,
-- Active/Inactive flag
conductingOperationCapable BOOLEAN,
-- Maximum one per node per session
startupChannel ChannelType OPTIONAL,
applicationUserID UserID OPTIONAL,
-- User ID assigned to the Application Protocol Entity
nonCollapsingCapabilities
SET OF
SEQUENCE {capabilityID CapabilityID,
applicationData OCTET STRING OPTIONAL} OPTIONAL,
...
}
CapabilityID ::= CHOICE {
standard INTEGER(0..65535),
-- Assigned by Application Protocol specifications
nonStandard Key
}
CapabilityClass ::= CHOICE {
logical NULL,
unsignedMin INTEGER(0..MAX), -- Capability value
unsignedMax INTEGER(0..MAX), -- Capability value
...
}
EntityID ::= INTEGER(0..65535)
ApplicationInvokeSpecifier ::= SEQUENCE {
sessionKey SessionKey,
expectedCapabilitySet
SET OF
SEQUENCE {capabilityID CapabilityID,
capabilityClass CapabilityClass,
...} OPTIONAL,
startupChannel ChannelType OPTIONAL,
mandatoryFlag BOOLEAN,
-- TRUE indicates required Application Protocol Entity
...
}
RegistryKey ::= SEQUENCE {
sessionKey SessionKey,
resourceID OCTET STRING(SIZE (0..64))
}
RegistryItem ::= CHOICE {
channelID DynamicChannelID,
tokenID DynamicTokenID,
parameter OCTET STRING(SIZE (0..64)),
vacant NULL,
...
}
RegistryEntryOwner ::= CHOICE {
owned
SEQUENCE {nodeID UserID, -- Node ID of the owning node--
entityID EntityID -- Entity ID of the owning-- }, -- Appliction Protocol Entity
notOwned NULL -- There is no current owner
}
RegistryModificationRights ::= ENUMERATED {owner(0), session(1), public(2)}
-- ============================================================================
-- Part 2: PDU Messages
-- ============================================================================
UserIDIndication ::= SEQUENCE {tag INTEGER,
...
}
ConferenceCreateRequest ::=
SEQUENCE { -- MCS-Connect-Provider request user data
conferenceName ConferenceName,
convenerPassword Password OPTIONAL,
password Password OPTIONAL,
lockedConference BOOLEAN,
listedConference BOOLEAN,
conductibleConference BOOLEAN,
terminationMethod TerminationMethod,
conductorPrivileges SET OF Privilege OPTIONAL,
conductedPrivileges SET OF Privilege OPTIONAL,
nonConductedPrivileges SET OF Privilege OPTIONAL,
conferenceDescription TextString OPTIONAL,
callerIdentifier TextString OPTIONAL,
userData UserData OPTIONAL,
...,
conferencePriority ConferencePriority OPTIONAL,
conferenceMode ConferenceMode OPTIONAL
}
ConferenceCreateResponse ::=
SEQUENCE { -- MCS-Connect-Provider response user data
nodeID UserID, -- Node ID of the sending node
tag INTEGER,
result
ENUMERATED {success(0), userRejected(1), resourcesNotAvailable(2),
rejectedForSymmetryBreaking(3),
lockedConferenceNotSupported(4), ...
},
userData UserData OPTIONAL,
...
}
ConferenceQueryRequest ::= SEQUENCE { -- MCS-Connect-Provider request user data
nodeType NodeType,
asymmetryIndicator AsymmetryIndicator OPTIONAL,
userData UserData OPTIONAL,
...
}
ConferenceQueryResponse ::=
SEQUENCE { -- MCS-Connect-Provider response user data
nodeType NodeType,
asymmetryIndicator AsymmetryIndicator OPTIONAL,
conferenceList SET OF ConferenceDescriptor,
result ENUMERATED {success(0), userRejected(1), ...
},
userData UserData OPTIONAL,
...,
waitForInvitationFlag BOOLEAN OPTIONAL,
noUnlistedConferenceFlag BOOLEAN OPTIONAL
}
ConferenceJoinRequest ::=
SEQUENCE { -- MCS-Connect-Provider request user data as well as
-- MCS-Send-Data on Node ID Channel of Top GCC sent
-- by the receiver of the MCS-Connect-Provider
conferenceName ConferenceNameSelector OPTIONAL,
-- Required when part of MCS-Connect-Provider
conferenceNameModifier ConferenceNameModifier OPTIONAL,
tag INTEGER OPTIONAL,
-- Filled in when sent on Node ID Channel of Top GCC
password PasswordChallengeRequestResponse OPTIONAL,
convenerPassword PasswordSelector OPTIONAL,
callerIdentifier TextString OPTIONAL,
userData UserData OPTIONAL,
...,
nodeCategory NodeCategory OPTIONAL
}
ConferenceJoinResponse ::=
SEQUENCE { -- MCS-Connect-Provider response user data as well as
-- MCS-Send-Data on Node ID Channel of
-- the receiver of the MCS-Connect-Provider
nodeID UserID OPTIONAL,
-- Node ID of directly connected node only
topNodeID UserID,
-- Node ID of Top GCC Provider
tag INTEGER,
conferenceNameAlias ConferenceNameSelector OPTIONAL,
passwordInTheClearRequired BOOLEAN,
lockedConference BOOLEAN,
listedConference BOOLEAN,
conductibleConference BOOLEAN,
terminationMethod TerminationMethod,
conductorPrivileges SET OF Privilege OPTIONAL,
-- No privilege shall be listed more than once
conductedPrivileges SET OF Privilege OPTIONAL,
-- No privilege shall be listed more than once
nonConductedPrivileges SET OF Privilege OPTIONAL,
-- No privilege shall be listed more than once
conferenceDescription TextString OPTIONAL,
password PasswordChallengeRequestResponse OPTIONAL,
result
ENUMERATED {success(0), userRejected(1), invalidConference(2),
invalidPassword(3), invalidConvenerPassword(4),
challengeResponseRequired(5), invalidChallengeResponse(6),
...
},
userData UserData OPTIONAL,
...,
nodeCategory NodeCategory OPTIONAL,
conferenceMode ConferenceMode OPTIONAL
}
ConferenceInviteRequest ::=
SEQUENCE { -- MCS-Connect-Provider request user data
conferenceName ConferenceName,
nodeID UserID, -- Node ID of the sending node
topNodeID UserID, -- Node ID of Top GCC Provider
tag INTEGER,
passwordInTheClearRequired BOOLEAN,
lockedConference BOOLEAN,
listedConference BOOLEAN,
conductibleConference BOOLEAN,
terminationMethod TerminationMethod,
conductorPrivileges SET OF Privilege OPTIONAL,
-- No privilege shall be listed more than once
conductedPrivileges SET OF Privilege OPTIONAL,
-- No privilege shall be listed more than once
nonConductedPrivileges SET OF Privilege OPTIONAL,
-- No privilege shall be listed more than once
conferenceDescription TextString OPTIONAL,
callerIdentifier TextString OPTIONAL,
userData UserData OPTIONAL,
...,
conferencePriority ConferencePriority OPTIONAL,
nodeCategory NodeCategory OPTIONAL,
conferenceMode ConferenceMode OPTIONAL
}
ConferenceInviteResponse ::=
SEQUENCE { -- MCS-Connect-Provider response user data
result ENUMERATED {success(0), userRejected(1), ...
},
userData UserData OPTIONAL,
...
}
ConferenceAddRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC or
-- Node ID Channel of Adding MCU if specified
networkAddress NetworkAddress,
requestingNode UserID,
tag INTEGER,
addingMCU UserID OPTIONAL,
userData UserData OPTIONAL,
...,
nodeCategory NodeCategory OPTIONAL,
networkAddressV2 NetworkAddressV2
}
ConferenceAddResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
tag INTEGER,
result
ENUMERATED {success(0), invalidRequester(1), invalidNetworkType(2),
invalidNetworkAddress(3), addedNodeBusy(4), networkBusy(5),
noPortsAvailable(6), connectionUnsuccessful(7), ...
},
userData UserData OPTIONAL,
...
}
ConferenceLockRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
-- No parameters
...
}
ConferenceLockResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
result ENUMERATED {success(0), invalidRequester(1), alreadyLocked(2), ...
},
...
}
ConferenceLockIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
-- or MCS-Send-Data on Node ID Channel
-- No parameters
...
}
ConferenceUnlockRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
-- No parameters
...
}
ConferenceUnlockResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
result ENUMERATED {success(0), invalidRequester(1), alreadyUnlocked(2), ...
},
...
}
ConferenceUnlockIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
-- or MCS-Send-Data on Node ID Channel
-- No parameters
...
}
ConferenceTerminateRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
reason ENUMERATED {userInitiated(0), timedConferenceTermination(1), ...
},
...
}
ConferenceTerminateResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
result ENUMERATED {success(0), invalidRequester(1), ...
},
...
}
ConferenceTerminateIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
reason ENUMERATED {userInitiated(0), timedConferenceTermination(1), ...
},
...
}
ConferenceEjectUserRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
nodeToEject UserID, -- Node ID of the node to eject
reason ENUMERATED {userInitiated(0), ...
},
...
}
ConferenceEjectUserResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
nodeToEject UserID, -- Node ID of the node to eject
result
ENUMERATED {success(0), invalidRequester(1), invalidNode(2), ...
},
...
}
ConferenceEjectUserIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
nodeToEject UserID, -- Node ID of the node to eject
reason
ENUMERATED {userInitiated(0), higherNodeDisconnected(1),
higherNodeEjected(2), ...
},
...
}
ConferenceTransferRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
conferenceName ConferenceNameSelector,
-- Name of conference to transfer to
conferenceNameModifier ConferenceNameModifier OPTIONAL,
networkAddress NetworkAddress OPTIONAL,
transferringNodes SET (SIZE (1..65536)) OF UserID OPTIONAL,
password PasswordSelector OPTIONAL,
...,
networkAddressV2 NetworkAddressV2 OPTIONAL
}
ConferenceTransferResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
conferenceName ConferenceNameSelector,
-- Name of conference to transfer to
conferenceNameModifier ConferenceNameModifier OPTIONAL,
transferringNodes SET (SIZE (1..65536)) OF UserID OPTIONAL,
result ENUMERATED {success(0), invalidRequester(1), ...
},
...
}
ConferenceTransferIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
conferenceName ConferenceNameSelector,
-- Name of conference to transfer to
conferenceNameModifier ConferenceNameModifier OPTIONAL,
networkAddress NetworkAddress OPTIONAL,
transferringNodes SET (SIZE (1..65536)) OF UserID OPTIONAL,
-- List of Node IDs,
-- not present if destined for all nodes
password PasswordSelector OPTIONAL,
...,
networkAddressV2 NetworkAddressV2 OPTIONAL
}
RosterUpdateIndication ::= SEQUENCE { -- MCS-Send-Data on Node ID Channel or
-- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
fullRefresh BOOLEAN,
-- Conference Roster and all
-- ApplicationProtocol Sessions refreshed
nodeInformation
SEQUENCE {nodeRecordList
CHOICE {noChange NULL,
refresh
SET (SIZE (1..65536)) OF
SEQUENCE
-- One for each node in the conference;
-- no node shall be listed more than once
{nodeID UserID, -- Node ID of the node--
nodeRecord NodeRecord},
update
SET (SIZE (1..65536)) OF
SEQUENCE
-- One for each node changing its node record;
-- no node shall be listed more than once
{nodeID UserID, -- Node ID of the node--
nodeUpdate
CHOICE {addRecord NodeRecord,
replaceRecord NodeRecord,
removeRecord NULL,
...}},
...},
rosterInstanceNumber INTEGER(0..65535),
nodesAdded BOOLEAN,
-- Nodes have been added since last instance
nodesRemoved BOOLEAN,
-- Nodes have been removed since last instance
...},
applicationInformation
SET (SIZE (0..65535)) OF
SEQUENCE
-- One for each Application Protocol Session;
-- all Application Protocol Sessions if full refresh;
-- no Application Protocol shall be
-- listed more than once
{
sessionKey SessionKey,
applicationRecordList CHOICE
{
noChange NULL,
refresh SET (SIZE (0..65535)) OF
SEQUENCE
-- One for each node with the
-- Application Protocol Session enrolled;
-- no node shall be listed more than once
{nodeID UserID,
-- Node ID of node
entityID EntityID,
-- ID for this Application Protocol Entity at this node
applicationRecord ApplicationRecord},
update
SET (SIZE (1..65536)) OF
SEQUENCE
-- One for each node modifying its Application Record;
-- no node shall be listed more than once
{nodeID UserID,
-- Node ID of node
entityID EntityID,
-- ID for this Application Protocol Entity at this node
applicationUpdate
CHOICE {addRecord ApplicationRecord,
replaceRecord ApplicationRecord,
removeRecord NULL,
...}},
...},
applicationCapabilitiesList
CHOICE {noChange NULL,
refresh
SET OF
SEQUENCE {capabilityID CapabilityID,
capabilityClass CapabilityClass,
numberOfEntities INTEGER(1..65536),
-- Number of Application Protocol Entities
-- which issued the capability
...},
...},
rosterInstanceNumber INTEGER(0..65535),
peerEntitiesAdded BOOLEAN,
-- Peer Entities have been added since last instance
peerEntitiesRemoved BOOLEAN,
-- Peer Entities have been removed since last instance
...},
...
}
ApplicationInvokeIndication ::=
SEQUENCE { -- MCS-Send-Data or MCS-Uniform-Send-Data
-- on GCC-Broadcast-Channel or Node ID Channel
applicationProtocolEntiyList
SET (SIZE (1..65536)) OF ApplicationInvokeSpecifier,
destinationNodes SET (SIZE (1..65536)) OF UserID OPTIONAL,
-- List of Node IDs,
-- not present if destined for all nodes
...
}
RegistryRegisterChannelRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
entityID EntityID,
key RegistryKey,
channelID DynamicChannelID,
...
}
RegistryAssignTokenRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
entityID EntityID,
key RegistryKey,
...
}
RegistrySetParameterRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
entityID EntityID,
key RegistryKey,
parameter OCTET STRING(SIZE (0..64)),
modificationRights RegistryModificationRights OPTIONAL,
...
}
RegistryRetrieveEntryRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
entityID EntityID,
key RegistryKey,
...
}
RegistryDeleteEntryRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
entityID EntityID,
key RegistryKey,
...
}
RegistryMonitorEntryRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
entityID EntityID,
key RegistryKey,
...
}
RegistryMonitorEntryIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
key RegistryKey,
item RegistryItem,
-- Contents: channel, token, parameter, or empty
owner RegistryEntryOwner,
modificationRights RegistryModificationRights OPTIONAL,
...
}
RegistryAllocateHandleRequest ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of Top GCC
entityID EntityID,
numberOfHandles INTEGER(1..1024),
...
}
RegistryAllocateHandleResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
entityID EntityID,
numberOfHandles INTEGER(1..1024),
firstHandle Handle,
result ENUMERATED {successful(0), noHandlesAvailable(1), ...
},
...
}
RegistryResponse ::=
SEQUENCE { -- MCS-Send-Data on Node ID Channel of requester
entityID EntityID,
-- Entity ID of the requesting Application Protocol Entity
primitiveType
ENUMERATED {registerChannel(0), assignToken(1), setParameter(2),
retrieveEntry(3), deleteEntry(4), monitorEntry(5), ...
},
key RegistryKey,
-- Database index
item RegistryItem,
-- Contents: channel, token, parameter, or vacant
owner RegistryEntryOwner,
modificationRights RegistryModificationRights OPTIONAL,
result
ENUMERATED {successful(0), belongsToOther(1), tooManyEntries(2),
inconsistentType(3), entryNotFound(4), entryAlreadyExists(5),
invalidRequester(6), ...
},
...
}
ConductorAssignIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
conductingNode UserID,
...
}
ConductorReleaseIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
-- No parameters
...
}
ConductorPermissionAskIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
grantFlag BOOLEAN,
-- TRUE to request permission grant, FALSE to release
...
}
ConductorPermissionGrantIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
permissionList SEQUENCE (SIZE (0..65535)) OF UserID,
-- Node ID of nodes granted permission
waitingList SEQUENCE (SIZE (1..65536)) OF UserID OPTIONAL,
-- Node ID of nodes waiting form permission
...
}
ConferenceTimeRemainingIndication ::=
SEQUENCE { -- MCS-Send-Data on GCC-Broadcast-Channel
timeRemaining Time,
nodeID UserID OPTIONAL,
...
}
ConferenceTimeInquireIndication ::=
SEQUENCE { -- MCS-Send-Data on GCC-Convener-Channel
nodeSpecificTimeFlag BOOLEAN,
-- FALSE for conference-wide, TRUE for node-specific
...
}
ConferenceTimeExtendIndication ::=
SEQUENCE { -- MCS-Send-Data on GCC-Convener-Channel
timeToExtend Time,
nodeSpecificTimeFlag BOOLEAN,
-- FALSE for conference-wide, TRUE for node-specific
...
}
ConferenceAssistanceIndication ::=
SEQUENCE { -- MCS-Uniform-Send-Data on GCC-Broadcast-Channel
userData UserData OPTIONAL,
...
}
TextMessageIndication ::= SEQUENCE { -- MCS-Send-Data or MCS-Uniform-Send-Data
message TextString,
-- on GCC-Broadcast-Channel or Node ID Channel
...
}
RosterRefreshRequest ::= SEQUENCE {
nodeID UserID,
nodeCategory NodeCategory,
fullRefresh BOOLEAN,
sendConferenceRoster BOOLEAN OPTIONAL,
applicationList
SEQUENCE {applicationKeyList
SET OF
SEQUENCE {applicationProtocolKey Key,
nonStandardParameter
NonStandardParameter OPTIONAL,
...},
nonStandardParameter NonStandardParameter OPTIONAL,
...} OPTIONAL,
sessionList
SEQUENCE {sessionKeyList
SET OF
SEQUENCE {sessionKey SessionKey,
nonStandardParameter NonStandardParameter OPTIONAL,
...},
nonStandardParameter NonStandardParameter OPTIONAL,
...} OPTIONAL,
nonStandardParameter NonStandardParameter OPTIONAL,
...
}
FunctionNotSupportedResponse ::= SEQUENCE {request RequestPDU
}
NonStandardPDU ::= SEQUENCE {data NonStandardParameter,
...
}
-- ==========================================================================
-- Part 3: Messages sent as MCS-Connect-Provider user data
-- ==========================================================================
ConnectData ::= SEQUENCE {
t124Identifier Key,
-- This shall be set to the value {itu-t recommendation t 124 version(0) 1}
connectPDU OCTET STRING
}
ConnectGCCPDU ::= CHOICE {
conferenceCreateRequest ConferenceCreateRequest,
conferenceCreateResponse ConferenceCreateResponse,
conferenceQueryRequest ConferenceQueryRequest,
conferenceQueryResponse ConferenceQueryResponse,
conferenceJoinRequest ConferenceJoinRequest,
conferenceJoinResponse ConferenceJoinResponse,
conferenceInviteRequest ConferenceInviteRequest,
conferenceInviteResponse ConferenceInviteResponse,
...
}
-- ============================================================================
-- Part 4: Messages sent using MCS-Send-Data or MCS-Uniform-Send-Data
-- ============================================================================
GCCPDU ::= CHOICE {
request RequestPDU,
response ResponsePDU,
indication IndicationPDU
}
RequestPDU ::= CHOICE {
conferenceJoinRequest ConferenceJoinRequest,
conferenceAddRequest ConferenceAddRequest,
conferenceLockRequest ConferenceLockRequest,
conferenceUnlockRequest ConferenceUnlockRequest,
conferenceTerminateRequest ConferenceTerminateRequest,
conferenceEjectUserRequest ConferenceEjectUserRequest,
conferenceTransferRequest ConferenceTransferRequest,
registryRegisterChannelRequest RegistryRegisterChannelRequest,
registryAssignTokenRequest RegistryAssignTokenRequest,
registrySetParameterRequest RegistrySetParameterRequest,
registryRetrieveEntryRequest RegistryRetrieveEntryRequest,
registryDeleteEntryRequest RegistryDeleteEntryRequest,
registryMonitorEntryRequest RegistryMonitorEntryRequest,
registryAllocateHandleRequest RegistryAllocateHandleRequest,
nonStandardRequest NonStandardPDU,
...
}
ResponsePDU ::= CHOICE {
conferenceJoinResponse ConferenceJoinResponse,
conferenceAddResponse ConferenceAddResponse,
conferenceLockResponse ConferenceLockResponse,
conferenceUnlockResponse ConferenceUnlockResponse,
conferenceTerminateResponse ConferenceTerminateResponse,
conferenceEjectUserResponse ConferenceEjectUserResponse,
conferenceTransferResponse ConferenceTransferResponse,
registryResponse RegistryResponse,
registryAllocateHandleResponse RegistryAllocateHandleResponse,
functionNotSupportedResponse FunctionNotSupportedResponse,
nonStandardResponse NonStandardPDU,
...
}
IndicationPDU ::= CHOICE {
userIDIndication UserIDIndication,
conferenceLockIndication ConferenceLockIndication,
conferenceUnlockIndication ConferenceUnlockIndication,
conferenceTerminateIndication ConferenceTerminateIndication,
conferenceEjectUserIndication ConferenceEjectUserIndication,
conferenceTransferIndication ConferenceTransferIndication,
rosterUpdateIndication RosterUpdateIndication,
applicationInvokeIndication ApplicationInvokeIndication,
registryMonitorEntryIndication RegistryMonitorEntryIndication,
conductorAssignIndication ConductorAssignIndication,
conductorReleaseIndication ConductorReleaseIndication,
conductorPermissionAskIndication ConductorPermissionAskIndication,
conductorPermissionGrantIndication ConductorPermissionGrantIndication,
conferenceTimeRemainingIndication ConferenceTimeRemainingIndication,
conferenceTimeInquireIndication ConferenceTimeInquireIndication,
conferenceTimeExtendIndication ConferenceTimeExtendIndication,
conferenceAssistanceIndication ConferenceAssistanceIndication,
textMessageIndication TextMessageIndication,
nonStandardIndication NonStandardPDU,
...
}
END
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
|