forked from wireshark/wireshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkinnyProtocolOptimized.xml
4165 lines (4165 loc) · 285 KB
/
SkinnyProtocolOptimized.xml
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
<?xml version="1.0"?>
<messages>
<bitfield name="Generic_Bitfield_8">
<entries>
<entry comment="" name="Generic_Bitfield_Bit1" text="Bit1" value="0x0001"/>
<entry comment="" name="Generic_Bitfield_Bit2" text="Bit2" value="0x0002"/>
<entry comment="" name="Generic_Bitfield_Bit3" text="Bit3" value="0x0004"/>
<entry comment="" name="Generic_Bitfield_Bit4" text="Bit4" value="0x0008"/>
<entry comment="" name="Generic_Bitfield_Bit5" text="Bit5" value="0x0010"/>
<entry comment="" name="Generic_Bitfield_Bit6" text="Bit6" value="0x0020"/>
<entry comment="" name="Generic_Bitfield_Bit7" text="Bit7" value="0x0040"/>
<entry comment="" name="Generic_Bitfield_Bit8" text="Bit8" value="0x0080"/>
</entries>
</bitfield>
<bitfield name="Generic_Bitfield_16">
<entries>
<entry comment="" name="Generic_Bitfield_Bit1" text="Bit1" value="0x0001"/>
<entry comment="" name="Generic_Bitfield_Bit2" text="Bit2" value="0x0002"/>
<entry comment="" name="Generic_Bitfield_Bit3" text="Bit3" value="0x0004"/>
<entry comment="" name="Generic_Bitfield_Bit4" text="Bit4" value="0x0008"/>
<entry comment="" name="Generic_Bitfield_Bit5" text="Bit5" value="0x0010"/>
<entry comment="" name="Generic_Bitfield_Bit6" text="Bit6" value="0x0020"/>
<entry comment="" name="Generic_Bitfield_Bit7" text="Bit7" value="0x0040"/>
<entry comment="" name="Generic_Bitfield_Bit8" text="Bit8" value="0x0080"/>
<entry comment="" name="Generic_Bitfield_Bit9" text="Bit9" value="0x0100"/>
<entry comment="" name="Generic_Bitfield_Bit10" text="Bit10" value="0x0200"/>
<entry comment="" name="Generic_Bitfield_Bit11" text="Bit11" value="0x0400"/>
<entry comment="" name="Generic_Bitfield_Bit12" text="Bit12" value="0x0800"/>
<entry comment="" name="Generic_Bitfield_Bit13" text="Bit13" value="0x1000"/>
<entry comment="" name="Generic_Bitfield_Bit14" text="Bit14" value="0x2000"/>
<entry comment="" name="Generic_Bitfield_Bit15" text="Bit14" value="0x4000"/>
<entry comment="" name="Generic_Bitfield_Bit16" text="Bit15" value="0x8000"/>
</entries>
</bitfield>
<bitfield name="Generic_Bitfield_32">
<entries>
<entry comment="" name="Generic_Bitfield_Bit1" text="Bit1" value="0x0001"/>
<entry comment="" name="Generic_Bitfield_Bit2" text="Bit2" value="0x0002"/>
<entry comment="" name="Generic_Bitfield_Bit3" text="Bit3" value="0x0004"/>
<entry comment="" name="Generic_Bitfield_Bit4" text="Bit4" value="0x0008"/>
<entry comment="" name="Generic_Bitfield_Bit5" text="Bit5" value="0x0010"/>
<entry comment="" name="Generic_Bitfield_Bit6" text="Bit6" value="0x0020"/>
<entry comment="" name="Generic_Bitfield_Bit7" text="Bit7" value="0x0040"/>
<entry comment="" name="Generic_Bitfield_Bit8" text="Bit8" value="0x0080"/>
<entry comment="" name="Generic_Bitfield_Bit9" text="Bit9" value="0x0100"/>
<entry comment="" name="Generic_Bitfield_Bit10" text="Bit10" value="0x0200"/>
<entry comment="" name="Generic_Bitfield_Bit11" text="Bit11" value="0x0400"/>
<entry comment="" name="Generic_Bitfield_Bit12" text="Bit12" value="0x0800"/>
<entry comment="" name="Generic_Bitfield_Bit13" text="Bit13" value="0x1000"/>
<entry comment="" name="Generic_Bitfield_Bit14" text="Bit14" value="0x2000"/>
<entry comment="" name="Generic_Bitfield_Bit15" text="Bit14" value="0x4000"/>
<entry comment="" name="Generic_Bitfield_Bit16" text="Bit15" value="0x8000"/>
<entry comment="" name="Generic_Bitfield_Bit17" text="Bit17" value="0x10000"/>
<entry comment="" name="Generic_Bitfield_Bit18" text="Bit18" value="0x20000"/>
<entry comment="" name="Generic_Bitfield_Bit19" text="Bit19" value="0x40000"/>
<entry comment="" name="Generic_Bitfield_Bit20" text="Bit20" value="0x80000"/>
<entry comment="" name="Generic_Bitfield_Bit21" text="Bit21" value="0x100000"/>
<entry comment="" name="Generic_Bitfield_Bit22" text="Bit22" value="0x200000"/>
<entry comment="" name="Generic_Bitfield_Bit23" text="Bit23" value="0x400000"/>
<entry comment="" name="Generic_Bitfield_Bit24" text="Bit24" value="0x800000"/>
<entry comment="" name="Generic_Bitfield_Bit25" text="Bit25" value="0x1000000"/>
<entry comment="" name="Generic_Bitfield_Bit26" text="Bit26" value="0x2000000"/>
<entry comment="" name="Generic_Bitfield_Bit27" text="Bit27" value="0x4000000"/>
<entry comment="" name="Generic_Bitfield_Bit28" text="Bit28" value="0x8000000"/>
<entry comment="" name="Generic_Bitfield_Bit29" text="Bit29" value="0x10000000"/>
<entry comment="" name="Generic_Bitfield_Bit30" text="Bit30" value="0x20000000"/>
<entry comment="" name="Generic_Bitfield_Bit31" text="Bit31" value="0x40000000"/>
<entry comment="" name="Generic_Bitfield_Bit32" text="Bit32" value="0x80000000"/>
</entries>
</bitfield>
<enum name="DisplayLabels_36">
<entries>
<entry name="DisplayLabel_Empty" text="Empty" value="0o000"/>
<entry name="DisplayLabel_Acct" text="Acct" value="0o002"/>
<entry name="DisplayLabel_Flash" text="Flash" value="0o003"/>
<entry name="DisplayLabel_Login" text="Login" value="0o004"/>
<entry name="DisplayLabel_Device_In_Home_Location" text="Device In Home Location" value="0o005"/>
<entry name="DisplayLabel_Device_In_Roaming_Location" text="Device In Roaming Location" value="0o006"/>
<entry name="DisplayLabel_Enter_Authorization_Code" text="Enter Authorization Code" value="0o007"/>
<entry name="DisplayLabel_Enter_Client_Matter_Code" text="Enter Client Matter Code" value="0o010"/>
<entry name="DisplayLabel_Calls_Available_For_Pickup" text="Calls Available For Pickup" value="0o011"/>
<entry name="DisplayLabel_Cm_Fallback_Service_Operating" text="Cm Fallback Service Operating" value="0o012"/>
<entry name="DisplayLabel_Max_Phones_Exceeded" text="Max Phones Exceeded" value="0o013"/>
<entry name="DisplayLabel_Waiting_To_Rehome" text="Waiting To Rehome" value="0o014"/>
<entry name="DisplayLabel_Please_End_Call" text="Please End Call" value="0o015"/>
<entry name="DisplayLabel_Paging" text="Paging" value="0o016"/>
<entry name="DisplayLabel_Select_Line" text="Select Line" value="0o017"/>
<entry name="DisplayLabel_Transfer_Destination_Is_Busy" text="Transfer Destination Is Busy" value="0o020"/>
<entry name="DisplayLabel_Select_A_Service" text="Select A Service" value="0o021"/>
<entry name="DisplayLabel_Local_Services" text="Local Services" value="0o022"/>
<entry name="DisplayLabel_Enter_Search_Criteria" text="Enter Search Criteria" value="0o023"/>
<entry name="DisplayLabel_Night_Service" text="Night Service" value="0o024"/>
<entry name="DisplayLabel_Night_Service_Active" text="Night Service Active" value="0o025"/>
<entry name="DisplayLabel_Night_Service_Disabled" text="Night Service Disabled" value="0o026"/>
<entry name="DisplayLabel_Login_Successful" text="Login Successful" value="0o027"/>
<entry name="DisplayLabel_Wrong_Pin" text="Wrong Pin" value="0o030"/>
<entry name="DisplayLabel_Please_Enter_Pin" text="Please Enter Pin" value="0o031"/>
<entry name="DisplayLabel_Of" text="Of" value="0o032"/>
<entry name="DisplayLabel_Records_1_To" text="Records 1 To" value="0o033"/>
<entry name="DisplayLabel_No_Record_Found" text="No Record Found" value="0o034"/>
<entry name="DisplayLabel_Search_Results" text="Search Results" value="0o035"/>
<entry name="DisplayLabel_Calls_In_Queue" text="Calls In Queue" value="0o036"/>
<entry name="DisplayLabel_Join_To_Hunt_Group" text="Join To Hunt Group" value="0o037"/>
<entry name="DisplayLabel_Ready" text="Ready" value="0o040"/>
<entry name="DisplayLabel_Notready" text="Notready" value="0o041"/>
<entry name="DisplayLabel_Call_On_Hold" text="Call On Hold" value="0o042"/>
<entry name="DisplayLabel_Hold_Reversion" text="Hold Reversion" value="0o043"/>
<entry name="DisplayLabel_Setup_Failed" text="Setup Failed" value="0o044"/>
<entry name="DisplayLabel_No_Resources" text="No Resources" value="0o045"/>
<entry name="DisplayLabel_Device_Not_Authorized" text="Device Not Authorized" value="0o046"/>
<entry name="DisplayLabel_Monitoring" text="Monitoring" value="0o047"/>
<entry name="DisplayLabel_Recording_Awaiting_Call_To_Be_Active" text="Recording Awaiting Call To Be Active" value="0o050"/>
<entry name="DisplayLabel_Recording_Already_In_Progress" text="Recording Already In Progress" value="0o051"/>
<entry name="DisplayLabel_Inactive_Recording_Session" text="Inactive Recording Session" value="0o052"/>
<entry name="DisplayLabel_Mobility" text="Mobility" value="0o053"/>
<entry name="DisplayLabel_Whisper" text="Whisper" value="0o054"/>
<entry name="DisplayLabel_Forward_All" text="Forward All" value="0o055"/>
<entry name="DisplayLabel_Malicious_Call_Id" text="Malicious Call Id" value="0o056"/>
<entry name="DisplayLabel_Group_Pickup" text="Group Pickup" value="0o057"/>
<entry name="DisplayLabel_Remove_Last_Participant" text="Remove Last Participant" value="0o060"/>
<entry name="DisplayLabel_Other_Pickup" text="Other Pickup" value="0o061"/>
<entry name="DisplayLabel_Video" text="Video" value="0o062"/>
<entry name="DisplayLabel_End_Call" text="End Call" value="0o063"/>
<entry name="DisplayLabel_Conference_List" text="Conference List" value="0o064"/>
<entry name="DisplayLabel_Quality_Reporting_Tool" text="Quality Reporting Tool" value="0o065"/>
<entry name="DisplayLabel_Hunt_Group" text="Hunt Group" value="0o066"/>
<entry name="DisplayLabel_Use_Line_Or_Join_To_Complete" text="Use Line Or Join To Complete" value="0o067"/>
<entry name="DisplayLabel_Do_Not_Disturb" text="Do Not Disturb" value="0o070"/>
<entry name="DisplayLabel_Do_Not_Disturb_Is_Active" text="Do Not Disturb Is Active" value="0o071"/>
<entry name="DisplayLabel_Cfwdall_Loop_Detected" text="Cfwdall Loop Detected" value="0o072"/>
<entry name="DisplayLabel_Cfwdall_Hops_Exceeded" text="Cfwdall Hops Exceeded" value="0o073"/>
<entry name="DisplayLabel_Abbrdial" text="Abbrdial" value="0o074"/>
<entry name="DisplayLabel_Pickup_Is_Unavailable" text="Pickup Is Unavailable" value="0o075"/>
<entry name="DisplayLabel_Conference_Is_Unavailable" text="Conference Is Unavailable" value="0o076"/>
<entry name="DisplayLabel_Meetme_Is_Unavailable" text="Meetme Is Unavailable" value="0o077"/>
<entry name="DisplayLabel_Cannot_Retrieve_Parked_Call" text="Cannot Retrieve Parked Call" value="0o0100"/>
<entry name="DisplayLabel_Cannot_Send_Call_To_Mobile" text="Cannot Send Call To Mobile" value="0o0101"/>
<entry name="DisplayLabel_Record" text="Record" value="0o0103"/>
<entry name="DisplayLabel_Cannot_Move_Conversation" text="Cannot Move Conversation" value="0o0104"/>
<entry name="DisplayLabel_Cw_Off" text="Cw Off" value="0o0105"/>
<entry name="DisplayLabel_Coaching" text="Coaching" value="0o0106"/>
<entry name="DisplayLabel_Recording" text="Recording" value="0o0117"/>
<entry name="DisplayLabel_Recording_Failed" text="Recording Failed" value="0o0120"/>
<entry name="DisplayLabel_Connecting" text="Connecting" value="0o0121"/>
</entries>
</enum>
<enum name="DisplayLabels_200">
<entries>
<entry name="DisplayLabel_Redial" text="Redial" value="0o01"/>
<entry name="DisplayLabel_Newcall" text="Newcall" value="0o02"/>
<entry name="DisplayLabel_Hold" text="Hold" value="0o03"/>
<entry name="DisplayLabel_Transfer" text="Transfer" value="0o04"/>
<entry name="DisplayLabel_Cfwdall" text="Cfwdall" value="0o05"/>
<entry name="DisplayLabel_Cfwdbusy" text="Cfwdbusy" value="0o06"/>
<entry name="DisplayLabel_Cfwdnoanswer" text="Cfwdnoanswer" value="0o07"/>
<entry name="DisplayLabel_Backspace" text="Backspace" value="0o010"/>
<entry name="DisplayLabel_Endcall" text="Endcall" value="0o011"/>
<entry name="DisplayLabel_Resume" text="Resume" value="0o012"/>
<entry name="DisplayLabel_Answer" text="Answer" value="0o013"/>
<entry name="DisplayLabel_Info" text="Info" value="0o014"/>
<entry name="DisplayLabel_Confrn" text="Confrn" value="0o015"/>
<entry name="DisplayLabel_Park" text="Park" value="0o016"/>
<entry name="DisplayLabel_Join" text="Join" value="0o017"/>
<entry name="DisplayLabel_Meetme" text="Meetme" value="0o020"/>
<entry name="DisplayLabel_Pickup" text="Pickup" value="0o021"/>
<entry name="DisplayLabel_Gpickup" text="Gpickup" value="0o022"/>
<entry name="DisplayLabel_Your_Current_Options" text="Your Current Options" value="0o023"/>
<entry name="DisplayLabel_Off_Hook" text="Off Hook" value="0o024"/>
<entry name="DisplayLabel_On_Hook" text="On Hook" value="0o025"/>
<entry name="DisplayLabel_Ring_Out" text="Ring Out" value="0o026"/>
<entry name="DisplayLabel_From" text="From" value="0o027"/>
<entry name="DisplayLabel_Connected" text="Connected" value="0o030"/>
<entry name="DisplayLabel_Busy" text="Busy" value="0o031"/>
<entry name="DisplayLabel_Line_In_Use" text="Line In Use" value="0o032"/>
<entry name="DisplayLabel_Call_Waiting" text="Call Waiting" value="0o033"/>
<entry name="DisplayLabel_Call_Transfer" text="Call Transfer" value="0o034"/>
<entry name="DisplayLabel_Call_Park" text="Call Park" value="0o035"/>
<entry name="DisplayLabel_Call_Proceed" text="Call Proceed" value="0o036"/>
<entry name="DisplayLabel_In_Use_Remote" text="In Use Remote" value="0o037"/>
<entry name="DisplayLabel_Enter_Number" text="Enter Number" value="0o040"/>
<entry name="DisplayLabel_Call_Park_At" text="Call Park At" value="0o041"/>
<entry name="DisplayLabel_Primary_Only" text="Primary Only" value="0o042"/>
<entry name="DisplayLabel_Temp_Fail" text="Temp Fail" value="0o043"/>
<entry name="DisplayLabel_You_Have_Voicemail" text="You Have Voicemail" value="0o044"/>
<entry name="DisplayLabel_Forwarded_To" text="Forwarded To" value="0o045"/>
<entry name="DisplayLabel_Can_Not_Complete_Conference" text="Can Not Complete Conference" value="0o046"/>
<entry name="DisplayLabel_No_Conference_Bridge" text="No Conference Bridge" value="0o047"/>
<entry name="DisplayLabel_Can_Not_Hold_Primary_Control" text="Can Not Hold Primary Control" value="0o050"/>
<entry name="DisplayLabel_Invalid_Conference_Participant" text="Invalid Conference Participant" value="0o051"/>
<entry name="DisplayLabel_In_Conference_Already" text="In Conference Already" value="0o052"/>
<entry name="DisplayLabel_No_Participant_Info" text="No Participant Info" value="0o053"/>
<entry name="DisplayLabel_Exceed_Maximum_Parties" text="Exceed Maximum Parties" value="0o054"/>
<entry name="DisplayLabel_Key_Is_Not_Active" text="Key Is Not Active" value="0o055"/>
<entry name="DisplayLabel_Error_No_License" text="Error No License" value="0o056"/>
<entry name="DisplayLabel_Error_Dbconfig" text="Error Dbconfig" value="0o057"/>
<entry name="DisplayLabel_Error_Database" text="Error Database" value="0o060"/>
<entry name="DisplayLabel_Error_Pass_Limit" text="Error Pass Limit" value="0o061"/>
<entry name="DisplayLabel_Error_Unknown" text="Error Unknown" value="0o062"/>
<entry name="DisplayLabel_Error_Mismatch" text="Error Mismatch" value="0o063"/>
<entry name="DisplayLabel_Conference" text="Conference" value="0o064"/>
<entry name="DisplayLabel_Park_Number" text="Park Number" value="0o065"/>
<entry name="DisplayLabel_Private" text="Private" value="0o066"/>
<entry name="DisplayLabel_Not_Enough_Bandwidth" text="Not Enough Bandwidth" value="0o067"/>
<entry name="DisplayLabel_Unknown_Number" text="Unknown Number" value="0o070"/>
<entry name="DisplayLabel_Rmlstc" text="Rmlstc" value="0o071"/>
<entry name="DisplayLabel_Voicemail" text="Voicemail" value="0o072"/>
<entry name="DisplayLabel_Immdiv" text="Immdiv" value="0o073"/>
<entry name="DisplayLabel_Intrcpt" text="Intrcpt" value="0o074"/>
<entry name="DisplayLabel_Setwtch" text="Setwtch" value="0o075"/>
<entry name="DisplayLabel_Trnsfvm" text="Trnsfvm" value="0o076"/>
<entry name="DisplayLabel_Dnd" text="Dnd" value="0o077"/>
<entry name="DisplayLabel_Divall" text="Divall" value="0o0100"/>
<entry name="DisplayLabel_Callback" text="Callback" value="0o0101"/>
<entry name="DisplayLabel_Network_Congestion_Rerouting" text="Network Congestion Rerouting" value="0o0102"/>
<entry name="DisplayLabel_Barge" text="Barge" value="0o0103"/>
<entry name="DisplayLabel_Failed_To_Setup_Barge" text="Failed To Setup Barge" value="0o0104"/>
<entry name="DisplayLabel_Another_Barge_Exists" text="Another Barge Exists" value="0o0105"/>
<entry name="DisplayLabel_Incompatible_Device_Type" text="Incompatible Device Type" value="0o0106"/>
<entry name="DisplayLabel_No_Park_Number_Available" text="No Park Number Available" value="0o0107"/>
<entry name="DisplayLabel_Callpark_Reversion" text="Callpark Reversion" value="0o0110"/>
<entry name="DisplayLabel_Service_Is_Not_Active" text="Service Is Not Active" value="0o0111"/>
<entry name="DisplayLabel_High_Traffic_Try_Again_Later" text="High Traffic Try Again Later" value="0o0112"/>
<entry name="DisplayLabel_Qrt" text="Qrt" value="0o0113"/>
<entry name="DisplayLabel_Mcid" text="Mcid" value="0o0114"/>
<entry name="DisplayLabel_Dirtrfr" text="Dirtrfr" value="0o0115"/>
<entry name="DisplayLabel_Select" text="Select" value="0o0116"/>
<entry name="DisplayLabel_Conflist" text="Conflist" value="0o0117"/>
<entry name="DisplayLabel_Idivert" text="Idivert" value="0o0120"/>
<entry name="DisplayLabel_Cbarge" text="Cbarge" value="0o0121"/>
<entry name="DisplayLabel_Can_Not_Complete_Transfer" text="Can Not Complete Transfer" value="0o0122"/>
<entry name="DisplayLabel_Can_Not_Join_Calls" text="Can Not Join Calls" value="0o0123"/>
<entry name="DisplayLabel_Mcid_Successful" text="Mcid Successful" value="0o0124"/>
<entry name="DisplayLabel_Number_Not_Configured" text="Number Not Configured" value="0o0125"/>
<entry name="DisplayLabel_Security_Error" text="Security Error" value="0o0126"/>
<entry name="DisplayLabel_Video_Bandwidth_Unavailable" text="Video Bandwidth Unavailable" value="0o0127"/>
<entry name="DisplayLabel_Vidmode" text="Vidmode" value="0o0130"/>
<entry name="DisplayLabel_Max_Call_Duration_Timeout" text="Max Call Duration Timeout" value="0o0131"/>
<entry name="DisplayLabel_Max_Hold_Duration_Timeout" text="Max Hold Duration Timeout" value="0o0132"/>
<entry name="DisplayLabel_Opickup" text="Opickup" value="0o0133"/>
<entry name="DisplayLabel_Hlog" text="Hlog" value="0o0134"/>
<entry name="DisplayLabel_Logged_Out_Of_Hunt_Group" text="Logged Out Of Hunt Group" value="0o0135"/>
<entry name="DisplayLabel_Park_Slot_Unavailable" text="Park Slot Unavailable" value="0o0136"/>
<entry name="DisplayLabel_No_Call_Available_For_Pickup" text="No Call Available For Pickup" value="0o0137"/>
<entry name="DisplayLabel_External_Transfer_Restricted" text="External Transfer Restricted" value="0o0141"/>
<entry name="DisplayLabel_No_Line_Available_For_Pickup" text="No Line Available For Pickup" value="0o0142"/>
<entry name="DisplayLabel_Path_Replacement_In_Progress" text="Path Replacement In Progress" value="0o0143"/>
<entry name="DisplayLabel_Unknown_2" text="Unknown 2" value="0o0144"/>
<entry name="DisplayLabel_Mac_Address" text="Mac Address" value="0o0145"/>
<entry name="DisplayLabel_Host_Name" text="Host Name" value="0o0146"/>
<entry name="DisplayLabel_Domain_Name" text="Domain Name" value="0o0147"/>
<entry name="DisplayLabel_Ip_Address" text="Ip Address" value="0o0150"/>
<entry name="DisplayLabel_Subnet_Mask" text="Subnet Mask" value="0o0151"/>
<entry name="DisplayLabel_Tftp_Server_1" text="Tftp Server 1" value="0o0152"/>
<entry name="DisplayLabel_Default_Router_1" text="Default Router 1" value="0o0153"/>
<entry name="DisplayLabel_Default_Router_2" text="Default Router 2" value="0o0154"/>
<entry name="DisplayLabel_Default_Router_3" text="Default Router 3" value="0o0155"/>
<entry name="DisplayLabel_Default_Router_4" text="Default Router 4" value="0o0156"/>
<entry name="DisplayLabel_Default_Router_5" text="Default Router 5" value="0o0157"/>
<entry name="DisplayLabel_Dns_Server_1" text="Dns Server 1" value="0o0160"/>
<entry name="DisplayLabel_Dns_Server_2" text="Dns Server 2" value="0o0161"/>
<entry name="DisplayLabel_Dns_Server_3" text="Dns Server 3" value="0o0162"/>
<entry name="DisplayLabel_Dns_Server_4" text="Dns Server 4" value="0o0163"/>
<entry name="DisplayLabel_Dns_Server_5" text="Dns Server 5" value="0o0164"/>
<entry name="DisplayLabel_Operational_Vlan_Id" text="Operational Vlan Id" value="0o0165"/>
<entry name="DisplayLabel_Admin_Vlan_Id" text="Admin Vlan Id" value="0o0166"/>
<entry name="DisplayLabel_Call_Manager_1" text="Call Manager 1" value="0o0167"/>
<entry name="DisplayLabel_Call_Manager_2" text="Call Manager 2" value="0o0170"/>
<entry name="DisplayLabel_Call_Manager_3" text="Call Manager 3" value="0o0171"/>
<entry name="DisplayLabel_Call_Manager_4" text="Call Manager 4" value="0o0172"/>
<entry name="DisplayLabel_Call_Manager_5" text="Call Manager 5" value="0o0173"/>
<entry name="DisplayLabel_Information_Url" text="Information Url" value="0o0174"/>
<entry name="DisplayLabel_Directories_Url" text="Directories Url" value="0o0175"/>
<entry name="DisplayLabel_Messages_Url" text="Messages Url" value="0o0176"/>
<entry name="DisplayLabel_Services_Url" text="Services Url" value="0o0177"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="KeepAliveReqMessage" opcode="0x0000" type="RegistrationAndManagement"/>
<enum name="DeviceType">
<entries>
<entry comment="" name="DeviceType_Station30SPplus" text="Station30SPplus" value="0x00001"/>
<entry comment="" name="DeviceType_Station12SPplus" text="Station12SPplus" value="0x00002"/>
<entry comment="" name="DeviceType_Station12SP" text="Station12SP" value="0x00003"/>
<entry comment="" name="DeviceType_Station12" text="Station12" value="0x00004"/>
<entry comment="" name="DeviceType_Station30VIP" text="Station30VIP" value="0x00005"/>
<entry comment="" name="DeviceType_StationTelecasterMgr" text="StationTelecasterMgr" value="0x00007"/>
<entry comment="" name="DeviceType_StationVGC" text="StationVGC" value="0x0000a"/>
<entry comment="" name="DeviceType_VGCVirtualPhone" text="VGCVirtualPhone" value="0x0000b"/>
<entry comment="" name="DeviceType_StationATA186" text="StationATA186" value="0x0000c"/>
<entry comment="" name="DeviceType_StationATA188" text="StationATA188" value="0x0000d"/>
<entry comment="" name="DeviceType_EmccBase" text="EmccBase" value="0x0000f"/>
<entry comment="" name="DeviceType_Virtual30SPplus" text="Virtual30SPplus" value="0x00014"/>
<entry comment="" name="DeviceType_StationPhoneApplication" text="StationPhoneApplication" value="0x00015"/>
<entry comment="" name="DeviceType_AnalogAccess" text="AnalogAccess" value="0x0001e"/>
<entry comment="" name="DeviceType_DigitalAccessTitan1" text="DigitalAccessTitan1" value="0x00028"/>
<entry comment="Digital Access T1" name="DeviceType_DigitalAccessT1" text="Digital Access T1" value="0x00029"/>
<entry comment="" name="DeviceType_DigitalAccessTitan2" text="DigitalAccessTitan2" value="0x0002a"/>
<entry comment="" name="DeviceType_DigitalAccessLennon" text="DigitalAccessLennon" value="0x0002b"/>
<entry comment="" name="DeviceType_AnalogAccessElvis" text="AnalogAccessElvis" value="0x0002f"/>
<entry comment="" name="DeviceType_VGCGateway" text="VGCGateway" value="0x00030"/>
<entry comment="" name="DeviceType_ConferenceBridge" text="ConferenceBridge" value="0x00032"/>
<entry comment="" name="DeviceType_ConferenceBridgeYoko" text="ConferenceBridgeYoko" value="0x00033"/>
<entry comment="" name="DeviceType_ConferenceBridgeDixieLand" text="ConferenceBridgeDixieLand" value="0x00034"/>
<entry comment="" name="DeviceType_ConferenceBridgeSummit" text="ConferenceBridgeSummit" value="0x00035"/>
<entry comment="" name="DeviceType_H225" text="H225" value="0x0003c"/>
<entry comment="" name="DeviceType_H323Phone" text="H323Phone" value="0x0003d"/>
<entry comment="" name="DeviceType_H323Gateway" text="H323Gateway" value="0x0003e"/>
<entry comment="" name="DeviceType_MusicOnHold" text="MusicOnHold" value="0x00046"/>
<entry comment="" name="DeviceType_Pilot" text="Pilot" value="0x00047"/>
<entry comment="" name="DeviceType_TapiPort" text="TapiPort" value="0x00048"/>
<entry comment="" name="DeviceType_TapiRoutePoint" text="TapiRoutePoint" value="0x00049"/>
<entry comment="" name="DeviceType_VoiceInBox" text="VoiceInBox" value="0x00050"/>
<entry comment="" name="DeviceType_VoiceInboxAdmin" text="VoiceInboxAdmin" value="0x00051"/>
<entry comment="" name="DeviceType_LineAnnunciator" text="LineAnnunciator" value="0x00052"/>
<entry comment="" name="DeviceType_SoftwareMtpDixieLand" text="SoftwareMtpDixieLand" value="0x00053"/>
<entry comment="" name="DeviceType_CiscoMediaServer" text="CiscoMediaServer" value="0x00054"/>
<entry comment="" name="DeviceType_ConferenceBridgeFlint" text="ConferenceBridgeFlint" value="0x00055"/>
<entry comment="" name="DeviceType_ConferenceBridgeHetroGen" text="ConferenceBridgeHetroGen" value="0x00056"/>
<entry comment="" name="DeviceType_ConferenceBridgeAudVid" text="ConferenceBridgeAudVid" value="0x00057"/>
<entry comment="" name="DeviceType_ConferenceHVideoBridge" text="ConferenceHVideoBridge" value="0x00058"/>
<entry comment="" name="DeviceType_RouteList" text="RouteList" value="0x0005a"/>
<entry comment="" name="DeviceType_LoadSimulator" text="LoadSimulator" value="0x00064"/>
<entry comment="" name="DeviceType_MediaTerminationPoint" text="MediaTerminationPoint" value="0x0006e"/>
<entry comment="" name="DeviceType_MediaTerminationPointYoko" text="MediaTerminationPointYoko" value="0x0006f"/>
<entry comment="" name="DeviceType_MediaTerminationPointDixieLand" text="MediaTerminationPointDixieLand" value="0x00070"/>
<entry comment="" name="DeviceType_MediaTerminationPointSummit" text="MediaTerminationPointSummit" value="0x00071"/>
<entry comment="" name="DeviceType_Cisco_7941G" text="7941G" value="0x00073"/>
<entry comment="" name="DeviceType_Cisco_7971" text="7971" value="0x00077"/>
<entry comment="" name="DeviceType_MGCPStation" text="MGCPStation" value="0x00078"/>
<entry comment="" name="DeviceType_MGCPTrunk" text="MGCPTrunk" value="0x00079"/>
<entry comment="" name="DeviceType_RASProxy" text="RASProxy" value="0x0007a"/>
<entry comment="" name="DeviceType_Trunk" text="Trunk" value="0x0007d"/>
<entry comment="" name="DeviceType_Annunciator" text="Annunciator" value="0x0007e"/>
<entry comment="" name="DeviceType_MonitorBridge" text="MonitorBridge" value="0x0007f"/>
<entry comment="" name="DeviceType_Recorder" text="Recorder" value="0x00080"/>
<entry comment="" name="DeviceType_MonitorBridgeYoko" text="MonitorBridgeYoko" value="0x00081"/>
<entry comment="" name="DeviceType_SipTrunk" text="SipTrunk" value="0x00083"/>
<entry comment="" name="DeviceType_SipGateway" text="SipGateway" value="0x00084"/>
<entry comment="" name="DeviceType_WsmTrunk" text="WsmTrunk" value="0x00085"/>
<entry comment="" name="DeviceType_RemoteDestination" text="RemoteDestination" value="0x00086"/>
<entry comment="" name="DeviceType_GenericDevice" text="GenericDevice" value="0x000fd"/>
<entry comment="" name="DeviceType_UnknownMGCPGateway" text="UnknownMGCPGateway" value="0x000fe"/>
<entry comment="" name="DeviceType_NotDefined" text="NotDefined" value="0x000ff"/>
<entry comment="" name="DeviceType_Cisco_7911" text="7911" value="0x00133"/>
<entry comment="" name="DeviceType_MotorolaCN622" text="MotorolaCN622" value="0x0014f"/>
<entry comment="" name="DeviceType_ThirdPartySipBasic" text="3rdPartySipBasic" value="0x00150"/>
<entry comment="" name="DeviceType_UnifiedCommunicator" text="UnifiedCommunicator" value="0x00166"/>
<entry comment="" name="DeviceType_Cisco_7921" text="7921" value="0x0016d"/>
<entry comment="" name="DeviceType_Cisco_7906" text="7906" value="0x00171"/>
<entry comment="" name="DeviceType_ThirdPartySipAdv" text="3rdPartySipAdv" value="0x00176"/>
<entry comment="" name="DeviceType_Telepresence" text="Telepresence" value="0x00177"/>
<entry comment="" name="DeviceType_Cisco_7962" text="7962" value="0x00194"/>
<entry comment="" name="DeviceType_Cisco_3951" text="3951" value="0x0019c"/>
<entry comment="" name="DeviceType_Cisco_7937" text="7937" value="0x001af"/>
<entry comment="" name="DeviceType_Cisco_7942" text="7942" value="0x001b2"/>
<entry comment="" name="DeviceType_Cisco_7945" text="7945" value="0x001b3"/>
<entry comment="" name="DeviceType_Cisco_7965" text="7965" value="0x001b4"/>
<entry comment="" name="DeviceType_Cisco_7975" text="7975" value="0x001b5"/>
<entry comment="" name="DeviceType_Cisco_9971_CE" text="9971_CE" value="0x001ed"/>
<entry comment="" name="DeviceType_UnifiedMobileCommunicator" text="UnifiedMobileCommunicator" value="0x001d4"/>
<entry comment="" name="DeviceType_CSF" text="CSF" value="0x001f7"/>
<entry comment="" name="DeviceType_CiscoTelepresenceMcu" text="CiscoTelepresenceMcu" value="0x00255"/>
<entry comment="" name="DeviceType_CiscoTelePresenceConductor" text="CiscoTelePresenceConductor" value="0x08cc9"/>
<entry comment="" name="DeviceType_CiscoTelePresenceExchange" text="CiscoTelePresenceExchange" value="0x00257"/>
<entry comment="" name="DeviceType_CiscoTelePresenceSoftwareConferenceBridge" text="CiscoTelePresenceSoftwareConferenceBridge" value="0x00258"/>
<entry comment="" name="DeviceType_ASSip" text="ASSip" value="0x00277"/>
<entry comment="" name="DeviceType_CtiRemoteDevice" text="CtiRemoteDevice" value="0x0027b"/>
<entry comment="" name="DeviceType_Cisco_7905" text="7905" value="0x04e20"/>
<entry comment="" name="DeviceType_Cisco_7920" text="7920" value="0x07532"/>
<entry comment="" name="DeviceType_Cisco_7970" text="7970" value="0x07536"/>
<entry comment="" name="DeviceType_Cisco_7912" text="7912" value="0x07537"/>
<entry comment="" name="DeviceType_Cisco_7902" text="7902" value="0x07538"/>
<entry comment="" name="DeviceType_Cisco_7961G" text="7961G" value="0x07542"/>
<entry comment="" name="DeviceType_Cisco_7936" text="7936" value="0x07543"/>
<entry comment="" name="DeviceType_AnalogPhone" text="AnalogPhone" value="0x0754b"/>
<entry comment="" name="DeviceType_ISDNBRIPhone" text="ISDNBRIPhone" value="0x0754c"/>
<entry comment="" name="DeviceType_SCCPGwVirtualPhone" text="SCCPGwVirtualPhone" value="0x07550"/>
<entry comment="" name="DeviceType_IP_STE" text="IP_STE" value="0x07553"/>
<entry comment="" name="DeviceType_InteractiveVoiceResponse" text="InteractiveVoiceResponse" value="0x8d7b"/>
<entry comment="Cisco 7910" name="DeviceType_Cisco_7910" text="Cisco 7910" value="0x00006"/>
<entry comment="Cisco 7925" name="DeviceType_Cisco_7925" text="Cisco 7925" value="0x001e4"/>
<entry comment="Cisco 7931" name="DeviceType_Cisco_7931" text="Cisco 7931" value="0x0015c"/>
<entry comment="Cisco 7935" name="DeviceType_Cisco_7935" text="Cisco 7935" value="0x00009"/>
<entry comment="Cisco 7940" name="DeviceType_Cisco_7940" text="Cisco 7940" value="0x00008"/>
<entry comment="Cisco 7961 GE" name="DeviceType_Cisco_7961_GE" text="Cisco 7961 GE" value="0x00134"/>
<entry comment="" name="DeviceType_Cisco_7961G_GE" text="7961G_GE" value="0x00135"/>
<entry comment="Cisco 7985" name="DeviceType_Cisco_7985" text="Cisco 7985" value="0x0012e"/>
<entry comment="Nokia E Series" name="DeviceType_Nokia_E_Series" text="Nokia E Series" value="0x00113"/>
<entry comment="Cisco IP Communicator" name="DeviceType_Cisco_IP_Communicator" text="Cisco IP Communicator" value="0x07540"/>
<entry comment="Nokia ICC client" name="DeviceType_Nokia_ICC_client" text="Nokia ICC client" value="0x00178"/>
<entry comment="Cisco 6901" name="DeviceType_Cisco_6901" text="Cisco 6901" value="0x00223"/>
<entry comment="Cisco 6911" name="DeviceType_Cisco_6911" text="Cisco 6911" value="0x00224"/>
<entry comment="Cisco 6921" name="DeviceType_Cisco_6921" text="Cisco 6921" value="0x001ef"/>
<entry comment="Cisco 6941" name="DeviceType_Cisco_6941" text="Cisco 6941" value="0x001f0"/>
<entry comment="Cisco 6945" name="DeviceType_Cisco_6945" text="Cisco 6945" value="0x00234"/>
<entry comment="Cisco 6961" name="DeviceType_Cisco_6961" text="Cisco 6961" value="0x001f1"/>
<entry comment="Cisco 8941" name="DeviceType_Cisco_8941" text="Cisco 8941" value="0x0024a"/>
<entry comment="Cisco 8945" name="DeviceType_Cisco_8945" text="Cisco 8945" value="0x00249"/>
<entry comment="Cisco SPA 303G (1 line)" name="DeviceType_Cisco_SPA_303G" text="Cisco SPA 303G" value="0x1388b"/>
<entry comment="Cisco SPA 502G (1 line)" name="DeviceType_Cisco_SPA_502G" text="Cisco SPA 502G" value="0x13883"/>
<entry comment="Cisco SPA 504G (4 lines)" name="DeviceType_Cisco_SPA_504G" text="Cisco SPA 504G" value="0x13884"/>
<entry comment="Cisco SPA 509G (12 lines)" name="DeviceType_Cisco_SPA_509G" text="Cisco SPA 509G" value="0x13887"/>
<entry comment="Cisco SPA 521S" name="DeviceType_Cisco_SPA_521S" text="Cisco SPA 521S" value="0x13880"/>
<entry comment="Cisco SPA 525G (5 lines / color / wifi / bluetooth)" name="DeviceType_Cisco_SPA_525G" text="Cisco SPA 525G" value="0x13885"/>
<entry comment="Cisco SPA 525G2 (5 lines / color / wifi / bluetooth)" name="DeviceType_Cisco_SPA_525G2" text="Cisco SPA 525G2" value="0x13889"/>
<entry comment="Cisco 7914 AddOn" name="DeviceType_Cisco_7914_AddOn" text="Cisco 7914 AddOn" value="0x0007c"/>
<entry comment="Cisco 7915 AddOn (12 Buttons)" name="DeviceType_Cisco_7915_AddOn" text="Cisco 7915 AddOn" value="0x000e3"/>
<entry comment="Cisco 7915 AddOn (24 Buttons)" name="DeviceType_Cisco_7915_AddOn_24" text="Cisco 7915 AddOn 24" value="0x000e4"/>
<entry comment="Cisco 7916 AddOn (12 Buttons)" name="DeviceType_Cisco_7916_AddOn" text="Cisco 7916 AddOn" value="0x000e5"/>
<entry comment="Cisco 7916 AddOn (24 Buttons)" name="DeviceType_Cisco_7916_AddOn_24" text="Cisco 7916 AddOn 24" value="0x000e6"/>
</entries>
</enum>
<bitfield name="PhoneFeatures">
<entries>
<entry comment="" name="PhoneFeatures_Bit1" text="Bit1" value="0x0001"/>
<entry comment="" name="PhoneFeatures_Bit2" text="Bit2" value="0x0002"/>
<entry comment="" name="PhoneFeatures_Bit3" text="Bit3" value="0x0004"/>
<entry comment="" name="PhoneFeatures_Bit4" text="Bit4" value="0x0008"/>
<entry comment="Supports UTF-8" name="PhoneFeatures_UTF8" text="UTF8Bit5" value="0x0010"/>
<entry comment="" name="PhoneFeatures_Bit6" text="Bit6" value="0x0020"/>
<entry comment="" name="PhoneFeatures_Bit7" text="Bit7" value="0x0040"/>
<entry comment="Support Dynamic Messages" name="PhoneFeatures_DynamicMessages" text="DynamicMessages" value="0x0080"/>
<entry comment="" name="PhoneFeatures_Bit9" text="Bit9" value="0x0100"/>
<entry comment="Supports DTMF Type RFC2833" name="PhoneFeatures_RFC2833" text="RFC2833" value="0x0200"/>
<entry comment="" name="PhoneFeatures_Bit11" text="Bit11" value="0x0400"/>
<entry comment="" name="PhoneFeatures_Bit12" text="Bit12" value="0x0800"/>
<entry comment="" name="PhoneFeatures_Bit13" text="Bit13" value="0x1000"/>
<entry comment="" name="PhoneFeatures_Bit14" text="Bit14" value="0x2000"/>
<entry comment="" name="PhoneFeatures_Bit15" text="Bit15" value="0x4000"/>
<entry comment="Abbreviated Dial" name="PhoneFeatures_Abbreviated_Dial" text="AbbrevDial" value="0x8000"/>
</entries>
</bitfield>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="RegisterReqMessage" opcode="0x0001" type="RegistrationAndManagement">
<fields>
<struct comment="Station Identifier" longcomment="Device Name of this phone / appliance" name="sid" type="struct">
<fields>
<string comment="Device Name" name="DeviceName" size="16" type="char"/>
<integer comment="User Id" name="reserved_for_future_use" type="uint32"/>
<integer comment="Device Instance" name="instance" type="uint32"/>
</fields>
</struct>
<ip comment="IPv4 Address" name="stationIpAddr" type="ipv4"/>
<enum comment="Device Type" longcomment="Device Type of this phone / appliance" name="deviceType" subtype="DeviceType" type="uint32"/>
<integer comment="Maximum Number of Concurrent RTP Streams" longcomment="Indicates the maximum number of simultansous RTP duplex streams, which this client/appliance can handle." name="maxStreams" type="uint32"/>
</fields>
<fields size_gt="52">
<integer comment="Active RTP Streams" longcomment="Active RTP Streams at Registration" name="activeStreams" type="uint32"/>
<integer comment="Protocol Version" longcomment="Maximum Supported Protocol Version" name="protocolVer" type="uint8"/>
<integer comment="unknown" longcomment="unknown (Part of ProtocolVer)" name="unknown" type="uint8"/>
<bitfield comment="Features this device supports" name="phoneFeatures" size="uint16" subtype="PhoneFeatures" type="bitfield">
<entries>
<entry comment="" name="PhoneFeatures_Bit1" text="Bit1" value="0x0001"/>
<entry comment="" name="PhoneFeatures_Bit2" text="Bit2" value="0x0002"/>
<entry comment="" name="PhoneFeatures_Bit3" text="Bit3" value="0x0004"/>
<entry comment="" name="PhoneFeatures_Bit4" text="Bit4" value="0x0008"/>
<entry comment="Supports UTF-8" name="PhoneFeatures_UTF8" text="UTF8Bit5" value="0x0010"/>
<entry comment="" name="PhoneFeatures_Bit6" text="Bit6" value="0x0020"/>
<entry comment="" name="PhoneFeatures_Bit7" text="Bit7" value="0x0040"/>
<entry comment="Support Dynamic Messages" name="PhoneFeatures_DynamicMessages" text="DynamicMessages" value="0x0080"/>
<entry comment="" name="PhoneFeatures_Bit9" text="Bit9" value="0x0100"/>
<entry comment="Supports DTMF Type RFC2833" name="PhoneFeatures_RFC2833" text="RFC2833" value="0x0200"/>
<entry comment="" name="PhoneFeatures_Bit11" text="Bit11" value="0x0400"/>
<entry comment="" name="PhoneFeatures_Bit12" text="Bit12" value="0x0800"/>
<entry comment="" name="PhoneFeatures_Bit13" text="Bit13" value="0x1000"/>
<entry comment="" name="PhoneFeatures_Bit14" text="Bit14" value="0x2000"/>
<entry comment="" name="PhoneFeatures_Bit15" text="Bit15" value="0x4000"/>
<entry comment="Abbreviated Dial" name="PhoneFeatures_Abbreviated_Dial" text="AbbrevDial" value="0x8000"/>
</entries>
</bitfield>
<integer comment="Maximum Number of Concurrent Conferences" longcomment="Indicates the maximum number of simultansous Conferences, which this client/appliance can handle" name="maxConferences" type="uint32"/>
</fields>
<fields size_gt="100">
<integer comment="Active Conferences" longcomment="Active Conferences at Registration" name="activeConferences" type="uint32"/>
<ether comment="Mac Address" longcomment="Ethernet/Mac Address" name="macAddress" size="12" type="ether"/>
<integer comment="IPv4 Address Scope" name="ipV4AddressScope" type="uint32"/>
<integer comment="Maximum number of lines" name="maxNumberOfLines" type="uint32"/>
<ip comment="IPv6 Address" endianness="big" name="stationIpV6Addr" type="ipv6"/>
<integer comment="IPv6 Address Scope" name="ipV6AddressScope" type="uint32"/>
<string comment="Firmware Load Name" name="firmwareLoadName" size="32" type="char"/>
</fields>
<fields beginversion="0" endversion="22" size_gt="191">
<string comment="" name="configVersionStamp" size="48" type="char"/>
</fields>
</message>
<enum name="KeyPadButton">
<entries>
<entry comment="" name="KeyPadButton_Zero" text="Zero" value="0x0000"/>
<entry comment="" name="KeyPadButton_One" text="One" value="0x0001"/>
<entry comment="" name="KeyPadButton_Two" text="Two" value="0x0002"/>
<entry comment="" name="KeyPadButton_Three" text="Three" value="0x0003"/>
<entry comment="" name="KeyPadButton_Four" text="Four" value="0x0004"/>
<entry comment="" name="KeyPadButton_Five" text="Five" value="0x0005"/>
<entry comment="" name="KeyPadButton_Six" text="Six" value="0x0006"/>
<entry comment="" name="KeyPadButton_Seven" text="Seven" value="0x0007"/>
<entry comment="" name="KeyPadButton_Eight" text="Eight" value="0x0008"/>
<entry comment="" name="KeyPadButton_Nine" text="Nine" value="0x0009"/>
<entry comment="" name="KeyPadButton_A" text="A" value="0x000a"/>
<entry comment="" name="KeyPadButton_B" text="B" value="0x000b"/>
<entry comment="" name="KeyPadButton_C" text="C" value="0x000c"/>
<entry comment="" name="KeyPadButton_D" text="D" value="0x000d"/>
<entry comment="" name="KeyPadButton_Star" text="Star" value="0x000e"/>
<entry comment="" name="KeyPadButton_Pound" text="Pound" value="0x000f"/>
<entry comment="" name="KeyPadButton_Plus" text="Plus" value="0x0010"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="IpPortMessage" opcode="0x0002" type="CallControl">
<fields beginversion="0" endversion="22">
<integer comment="RTP Media Port" name="rtpMediaPort" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="KeypadButtonMessage" opcode="0x0003" type="CallControl">
<fields>
<enum comment="KeyPad Button which was Pressed" name="kpButton" subtype="KeyPadButton" type="uint32"/>
</fields>
<fields beginversion="0" endversion="22" size_gt="8">
<integer comment="LineId" name="lineInstance" type="uint32"/>
<integer comment="CallId" name="callReference" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="EnblocCallMessage" opcode="0x0004" type="CallControl">
<fields>
<string comment="CalledPartyNumber" declare="yes" name="calledParty" size="VariableDirnumSize" type="char"/>
</fields>
<fields size_gt="28">
<integer comment="LineId" name="lineInstance" type="uint32"/>
</fields>
</message>
<enum name="DeviceStimulus">
<entries>
<entry comment="" name="DeviceStimulus_LastNumberRedial" text="LastNumberRedial" value="0x0001"/>
<entry comment="" name="DeviceStimulus_SpeedDial" text="SpeedDial" value="0x0002"/>
<entry comment="" name="DeviceStimulus_Hold" text="Hold" value="0x0003"/>
<entry comment="" name="DeviceStimulus_Transfer" text="Transfer" value="0x0004"/>
<entry comment="" name="DeviceStimulus_ForwardAll" text="ForwardAll" value="0x0005"/>
<entry comment="" name="DeviceStimulus_ForwardBusy" text="ForwardBusy" value="0x0006"/>
<entry comment="" name="DeviceStimulus_ForwardNoAnswer" text="ForwardNoAnswer" value="0x0007"/>
<entry comment="" name="DeviceStimulus_Display" text="Display" value="0x0008"/>
<entry comment="" name="DeviceStimulus_Line" text="Line" value="0x0009"/>
<entry comment="" name="DeviceStimulus_T120Chat" text="T120Chat" value="0x000a"/>
<entry comment="" name="DeviceStimulus_T120Whiteboard" text="T120Whiteboard" value="0x000b"/>
<entry comment="" name="DeviceStimulus_T120ApplicationSharing" text="T120ApplicationSharing" value="0x000c"/>
<entry comment="" name="DeviceStimulus_T120FileTransfer" text="T120FileTransfer" value="0x000d"/>
<entry comment="" name="DeviceStimulus_Video" text="Video" value="0x000e"/>
<entry comment="" name="DeviceStimulus_VoiceMail" text="VoiceMail" value="0x000f"/>
<entry comment="" name="DeviceStimulus_AnswerRelease" text="AnswerRelease" value="0x0010"/>
<entry comment="" name="DeviceStimulus_AutoAnswer" text="AutoAnswer" value="0x0011"/>
<entry comment="" name="DeviceStimulus_Select" text="Select" value="0x0012"/>
<entry comment="" name="DeviceStimulus_Privacy" text="Privacy" value="0x0013"/>
<entry comment="" name="DeviceStimulus_ServiceURL" text="ServiceURL" value="0x0014"/>
<entry comment="" name="DeviceStimulus_BLFSpeedDial" text="BLFSpeedDial" value="0x0015"/>
<entry comment="" name="DeviceStimulus_DPark" text="DPark" value="0x0016"/>
<entry comment="" name="DeviceStimulus_Intercom" text="Intercom" value="0x0017"/>
<entry comment="" name="DeviceStimulus_MaliciousCall" text="MaliciousCall" value="0x001b"/>
<entry comment="" name="DeviceStimulus_GenericAppB1" text="GenericAppB1" value="0x0021"/>
<entry comment="" name="DeviceStimulus_GenericAppB2" text="GenericAppB2" value="0x0022"/>
<entry comment="" name="DeviceStimulus_GenericAppB3" text="GenericAppB3" value="0x0023"/>
<entry comment="" name="DeviceStimulus_GenericAppB4" text="GenericAppB4" value="0x0024"/>
<entry comment="" name="DeviceStimulus_GenericAppB5" text="GenericAppB5" value="0x0025"/>
<entry comment="" name="DeviceStimulus_MeetMeConference" text="MeetMeConference" value="0x007b"/>
<entry comment="" name="DeviceStimulus_Conference" text="Conference" value="0x007d"/>
<entry comment="" name="DeviceStimulus_CallPark" text="CallPark" value="0x007e"/>
<entry comment="" name="DeviceStimulus_CallPickUp" text="CallPickUp" value="0x007f"/>
<entry comment="" name="DeviceStimulus_GroupCallPickUp" text="GroupCallPickUp" value="0x0080"/>
<entry comment="" name="DeviceStimulus_Mobility" text="Mobility" value="0x0081"/>
<entry comment="" name="DeviceStimulus_DoNotDisturb" text="DoNotDisturb" value="0x0082"/>
<entry comment="" name="DeviceStimulus_ConfList" text="ConfList" value="0x0083"/>
<entry comment="" name="DeviceStimulus_RemoveLastParticipant" text="RemoveLastParticipant" value="0x0084"/>
<entry comment="" name="DeviceStimulus_QRT" text="QRT" value="0x0085"/>
<entry comment="" name="DeviceStimulus_CallBack" text="CallBack" value="0x0086"/>
<entry comment="" name="DeviceStimulus_OtherPickup" text="OtherPickup" value="0x0087"/>
<entry comment="" name="DeviceStimulus_VideoMode" text="VideoMode" value="0x0088"/>
<entry comment="" name="DeviceStimulus_NewCall" text="NewCall" value="0x0089"/>
<entry comment="" name="DeviceStimulus_EndCall" text="EndCall" value="0x008a"/>
<entry comment="" name="DeviceStimulus_HLog" text="HLog" value="0x008b"/>
<entry comment="" name="DeviceStimulus_Queuing" text="Queuing" value="0x008f"/>
<entry boundscheck="max" comment="" name="DeviceStimulus_MaxStimulusValue" text="MaxStimulusValue" value="0x00ff"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="StimulusMessage" opcode="0x0005" type="CallControl">
<fields beginversion="0" endversion="22">
<enum comment="Device Stimulus" name="stimulus" subtype="DeviceStimulus" type="uint32"/>
<integer comment="LineId" name="lineInstance" type="uint32"/>
<integer comment="CallId" name="callReference" type="uint32"/>
<integer comment="Stimulus Status" name="stimulusStatus" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="OffHookMessage" opcode="0x0006" type="CallControl">
<fields beginversion="0" endversion="22" size_gt="4">
<integer comment="LineId" name="lineInstance" type="uint32"/>
<integer comment="CallId" name="callReference" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="OnHookMessage" opcode="0x0007" type="CallControl">
<fields beginversion="0" endversion="22" size_gt="4">
<integer comment="LineId" name="lineInstance" type="uint32"/>
<integer comment="CallId" name="callReference" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="HookFlashMessage" opcode="0x0008" type="CallControl">
<fields beginversion="0" endversion="22">
<integer comment="LineId" name="lineInstance" type="uint32"/>
<integer comment="CallId" name="callReference" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="ForwardStatReqMessage" opcode="0x0009" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22">
<integer comment="" declare="yes" name="lineNumber" req_resp_key="1" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="SpeedDialStatReqMessage" opcode="0x000a" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22">
<integer comment="" declare="yes" name="speedDialNumber" req_resp_key="1" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="LineStatReqMessage" opcode="0x000b" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22">
<integer comment="" declare="yes" name="lineNumber" req_resp_key="1" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="ConfigStatReqMessage" opcode="0x000c" type="RegistrationAndManagement"/>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="TimeDateReqMessage" opcode="0x000d" type="RegistrationAndManagement"/>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="ButtonTemplateReqMessage" opcode="0x000e" type="RegistrationAndManagement"/>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="VersionReqMessage" opcode="0x000f" type="RegistrationAndManagement"/>
<enum define="yes" name="Media_PayloadType">
<entries type="audio">
<entry comment="" name="Media_Payload_G711Alaw64k" text="Media_Payload_G711Alaw64k" value="0x0002"/>
<entry comment="" name="Media_Payload_G711Alaw56k" text="Media_Payload_G711Alaw56k" value="0x0003"/>
<entry comment="" name="Media_Payload_G711Ulaw64k" text="Media_Payload_G711Ulaw64k" value="0x0004"/>
<entry comment="" name="Media_Payload_G711Ulaw56k" text="Media_Payload_G711Ulaw56k" value="0x0005"/>
<entry comment="" name="Media_Payload_G722_64k" text="Media_Payload_G722_64k" value="0x0006"/>
<entry comment="" name="Media_Payload_G722_56k" text="Media_Payload_G722_56k" value="0x0007"/>
<entry comment="" name="Media_Payload_G722_48k" text="Media_Payload_G722_48k" value="0x0008"/>
<entry comment="" name="Media_Payload_G7231" text="Media_Payload_G7231" value="0x0009"/>
<entry comment="" name="Media_Payload_G728" text="Media_Payload_G728" value="0x000a"/>
<entry comment="" name="Media_Payload_G729" text="Media_Payload_G729" value="0x000b"/>
<entry comment="" name="Media_Payload_G729AnnexA" text="Media_Payload_G729AnnexA" value="0x000c"/>
<entry comment="" name="Media_Payload_G729AnnexB" text="Media_Payload_G729AnnexB" value="0x000f"/>
<entry comment="" name="Media_Payload_G729AnnexAwAnnexB" text="Media_Payload_G729AnnexAwAnnexB" value="0x0010"/>
<entry comment="" name="Media_Payload_GSM_Full_Rate" text="Media_Payload_GSM_Full_Rate" value="0x0012"/>
<entry comment="" name="Media_Payload_GSM_Half_Rate" text="Media_Payload_GSM_Half_Rate" value="0x0013"/>
<entry comment="" name="Media_Payload_GSM_Enhanced_Full_Rate" text="Media_Payload_GSM_Enhanced_Full_Rate" value="0x0014"/>
<entry comment="" name="Media_Payload_Wide_Band_256k" text="Media_Payload_Wide_Band_256k" value="0x0019"/>
<entry comment="" name="Media_Payload_Data64" text="Media_Payload_Data64" value="0x0020"/>
<entry comment="" name="Media_Payload_Data56" text="Media_Payload_Data56" value="0x0021"/>
<entry comment="" name="Media_Payload_G7221_32K" text="Media_Payload_G7221_32K" value="0x0028"/>
<entry comment="" name="Media_Payload_G7221_24K" text="Media_Payload_G7221_24K" value="0x0029"/>
<entry comment="" name="Media_Payload_AAC" text="Media_Payload_AAC" value="0x002a"/>
<entry comment="" name="Media_Payload_MP4ALATM_128" text="Media_Payload_MP4ALATM_128" value="0x002b"/>
<entry comment="" name="Media_Payload_MP4ALATM_64" text="Media_Payload_MP4ALATM_64" value="0x002c"/>
<entry comment="" name="Media_Payload_MP4ALATM_56" text="Media_Payload_MP4ALATM_56" value="0x002d"/>
<entry comment="" name="Media_Payload_MP4ALATM_48" text="Media_Payload_MP4ALATM_48" value="0x002e"/>
<entry comment="" name="Media_Payload_MP4ALATM_32" text="Media_Payload_MP4ALATM_32" value="0x002f"/>
<entry comment="" name="Media_Payload_MP4ALATM_24" text="Media_Payload_MP4ALATM_24" value="0x0030"/>
<entry comment="" name="Media_Payload_MP4ALATM_NA" text="Media_Payload_MP4ALATM_NA" value="0x0031"/>
<entry comment="" name="Media_Payload_GSM" text="Media_Payload_GSM" value="0x0050"/>
<entry comment="" name="Media_Payload_G726_32K" text="Media_Payload_G726_32K" value="0x0052"/>
<entry comment="" name="Media_Payload_G726_24K" text="Media_Payload_G726_24K" value="0x0053"/>
<entry comment="" name="Media_Payload_G726_16K" text="Media_Payload_G726_16K" value="0x0054"/>
<entry comment="" name="Media_Payload_ILBC" text="Media_Payload_ILBC" value="0x0056"/>
<entry comment="" name="Media_Payload_ISAC" text="Media_Payload_ISAC" value="0x0059"/>
<entry comment="" name="Media_Payload_OPUS" text="Media_Payload_OPUS" value="0x005a"/>
<entry comment="" name="Media_Payload_AMR" text="Media_Payload_AMR" value="0x0061"/>
<entry comment="" name="Media_Payload_AMR_WB" text="Media_Payload_AMR_WB" value="0x0062"/>
</entries>
<entries type="video">
<entry comment="" name="Media_Payload_H261" text="Media_Payload_H261" value="0x0064"/>
<entry comment="" name="Media_Payload_H263" text="Media_Payload_H263" value="0x0065"/>
<entry comment="" name="Media_Payload_Vieo" text="Media_Payload_Vieo" value="0x0066"/>
<entry comment="" name="Media_Payload_H264" text="Media_Payload_H264" value="0x0067"/>
<entry comment="" name="Media_Payload_H264_SVC" text="Media_Payload_H264_SVC" value="0x0068"/>
<entry comment="" name="Media_Payload_T120" text="Media_Payload_T120" value="0x0069"/>
<entry comment="" name="Media_Payload_H224" text="Media_Payload_H224" value="0x006a"/>
<entry comment="" name="Media_Payload_T38Fax" text="Media_Payload_T38Fax" value="0x006b"/>
<entry comment="" name="Media_Payload_TOTE" text="Media_Payload_TOTE" value="0x006c"/>
<entry comment="" name="Media_Payload_H265" text="Media_Payload_H265" value="0x006d"/>
<entry comment="" name="Media_Payload_H264_UC" text="Media_Payload_H264_UC" value="0x006e"/>
<entry comment="" name="Media_Payload_XV150_MR_711U" text="Media_Payload_XV150_MR_711U" value="0x006f"/>
<entry comment="" name="Media_Payload_NSE_VBD_711U" text="Media_Payload_NSE_VBD_711U" value="0x0070"/>
<entry comment="" name="Media_Payload_XV150_MR_729A" text="Media_Payload_XV150_MR_729A" value="0x0071"/>
<entry comment="" name="Media_Payload_NSE_VBD_729A" text="Media_Payload_NSE_VBD_729A" value="0x0072"/>
<entry comment="" name="Media_Payload_H264_FEC" text="Media_Payload_H264_FEC" value="0x0073"/>
</entries>
<entries type="data">
<entry comment="" name="Media_Payload_Clear_Chan" text="Media_Payload_Clear_Chan" value="0x0078"/>
<entry comment="" name="Media_Payload_Universal_Xcoder" text="Media_Payload_Universal_Xcoder" value="0x00de"/>
<entry comment="" name="Media_Payload_RFC2833_DynPayload" text="Media_Payload_RFC2833_DynPayload" value="0x0101"/>
<entry comment="" name="Media_Payload_PassThrough" text="Media_Payload_PassThrough" value="0x0102"/>
<entry comment="" name="Media_Payload_Dynamic_Payload_PassThru" text="Media_Payload_Dynamic_Payload_PassThru" value="0x0103"/>
<entry comment="" name="Media_Payload_DTMF_OOB" text="Media_Payload_DTMF_OOB" value="0x0104"/>
<entry comment="" name="Media_Payload_Inband_DTMF_RFC2833" text="Media_Payload_Inband_DTMF_RFC2833" value="0x0105"/>
<entry comment="" name="Media_Payload_CFB_Tones" text="Media_Payload_CFB_Tones" value="0x0106"/>
<entry comment="" name="Media_Payload_NoAudio" text="Media_Payload_NoAudio" value="0x012b"/>
<entry comment="" name="Media_Payload_v150_LC_ModemRelay" text="Media_Payload_v150_LC_ModemRelay" value="0x012c"/>
<entry comment="" name="Media_Payload_v150_LC_SPRT" text="Media_Payload_v150_LC_SPRT" value="0x012d"/>
<entry comment="" name="Media_Payload_v150_LC_SSE" text="Media_Payload_v150_LC_SSE" value="0x012e"/>
<entry comment="" name="Media_Payload_Max" text="Media_Payload_Max" value="0x012f"/>
</entries>
</enum>
<enum name="Media_G723BitRate">
<entries>
<entry comment="" name="Media_G723BRate_5_3" text="Media_G723BRate_5_3" value="0x0001"/>
<entry comment="" name="Media_G723BRate_6_3" text="Media_G723BRate_6_3" value="0x0002"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="response" name="CapabilitiesResMessage" opcode="0x0010" request="0x009b" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22">
<integer comment="" declare="yes" name="capCount" type="uint32"/>
<struct comment="" maxsize="18" name="caps" size_fieldname="capCount" type="struct">
<fields>
<enum comment="" declare="yes" name="payloadCapability" subtype="Media_PayloadType" type="uint32"/>
<integer comment="" name="maxFramesPerPacket" type="uint32"/>
<union comment="" lookup_guide="payloadCapability" name="PAYLOADS" subtype="MediaCapabilityUnion" type="union">
<fields>
<enum comment="" lookup_eq="Media_Payload_G7231" name="g723BitRate" subtype="Media_G723BitRate" type="uint32"/>
<struct comment="" lookup_eq="Media_Payload_v150_LC_ModemRelay" name="modemRelay" type="struct">
<fields>
<integer comment="" name="capAndVer" type="uint32"/>
<integer comment="" name="modAnd2833" type="uint32"/>
</fields>
</struct>
<struct comment="" lookup_eq="Media_Payload_v150_LC_SPRT" name="sprtPayload" type="struct">
<fields>
<integer comment="" name="chan0MaxPayload" type="uint16"/>
<integer comment="" name="chan2MaxPayload" type="uint16"/>
<integer comment="" name="chan3MaxPayload" type="uint16"/>
<integer comment="" name="chan2MaxWindow" type="uint16"/>
</fields>
</struct>
<struct comment="" lookup_eq="Media_Payload_v150_LC_SSE" name="sse" type="struct">
<fields>
<integer comment="" name="standard" type="uint32"/>
<integer comment="" name="vendor" type="uint32"/>
</fields>
</struct>
<struct comment="" lookup_eq="*" name="codecParams" subtype="CodecParameters" type="struct">
<fields>
<integer comment="" name="codecMode" type="uint8"/>
<integer comment="" name="dynamicPayload" type="uint8"/>
<integer comment="" name="codecParam1" type="uint8"/>
<integer comment="" name="codecParam2" type="uint8"/>
</fields>
</struct>
</fields>
</union>
</fields>
</struct>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="ServerReqMessage" opcode="0x0012" type="RegistrationAndManagement"/>
<enum name="DeviceAlarmSeverity">
<entries>
<entry comment="" name="DeviceAlarmSeverity_Critical" text="Critical" value="0x0000"/>
<entry comment="" name="DeviceAlarmSeverity_Major" text="Major" value="0x0007"/>
<entry comment="" name="DeviceAlarmSeverity_Minor" text="Minor" value="0x0008"/>
<entry comment="" name="DeviceAlarmSeverity_Warning" text="Warning" value="0x0001"/>
<entry comment="" name="DeviceAlarmSeverity_Marginal" text="Marginal" value="0x000a"/>
<entry comment="" name="DeviceAlarmSeverity_Unknown" text="Unknown" value="0x0004"/>
<entry comment="" name="DeviceAlarmSeverity_Informational" text="Informational" value="0x0002"/>
<entry comment="" name="DeviceAlarmSeverity_TraceInfo" text="TraceInfo" value="0x0014"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="AlarmMessage" opcode="0x0020" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22">
<enum comment="" name="alarmSeverity" subtype="DeviceAlarmSeverity" type="uint32"/>
<string comment="" name="text" size="80" type="char"/>
<integer comment="" name="parm1" type="uint32"/>
<integer comment="" name="parm2" type="uint32"/>
</fields>
</message>
<enum name="MulticastMediaReceptionStatus">
<entries>
<entry comment="" name="MulticastMediaReceptionStatus_Ok" text="Ok" value="0x0000"/>
<entry comment="" name="MulticastMediaReceptionStatus_Error" text="Error" value="0x0001"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="response" name="MulticastMediaReceptionAckMessage" opcode="0x0021" request="0x0101" type="MediaControl">
<fields beginversion="0" endversion="22">
<enum comment="" name="multicastReceptionStatus" subtype="MulticastMediaReceptionStatus" type="uint32"/>
<integer comment="PassThrough PartyId" declare="yes" name="passThroughPartyId" req_resp_key="1" type="uint32"/>
<integer comment="CallId" name="callReference" type="uint32"/>
</fields>
</message>
<enum name="MediaStatus">
<entries>
<entry comment="" name="MediaStatus_Ok" text="Ok" value="0x0000"/>
<entry comment="" name="MediaStatus_Unknown" text="Unknown" value="0x0001"/>
<entry comment="" name="MediaStatus_NotEnoughChannels" text="NotEnoughChannels" value="0x0002"/>
<entry comment="" name="MediaStatus_CodecTooComplex" text="CodecTooComplex" value="0x0003"/>
<entry comment="" name="MediaStatus_InvalidPartyID" text="InvalidPartyID" value="0x0004"/>
<entry comment="" name="MediaStatus_InvalidCallRef" text="InvalidCallRef" value="0x0005"/>
<entry comment="" name="MediaStatus_InvalidCodec" text="InvalidCodec" value="0x0006"/>
<entry comment="" name="MediaStatus_InvalidPacketSize" text="InvalidPacketSize" value="0x0007"/>
<entry comment="" name="MediaStatus_OutOfSockets" text="OutOfSockets" value="0x0008"/>
<entry comment="" name="MediaStatus_EncoderOrDecoderFailed" text="EncoderOrDecoderFailed" value="0x0009"/>
<entry comment="" name="MediaStatus_InvalidDynamicPayloadType" text="InvalidDynamicPayloadType" value="0x000a"/>
<entry comment="" name="MediaStatus_RequestedIpAddrTypeUnAvailable" text="RequestedIpAddrTypeUnAvailable" value="0x000b"/>
<entry comment="" name="MediaStatus_DeviceOnHook" text="DeviceOnHook" value="0x00ff"/>
</entries>
</enum>
<enum define="yes" name="IpAddrType">
<entries>
<entry comment="" name="IpAddrType_Ipv4" text="v4" value="0x0000"/>
<entry comment="" name="IpAddrType_Ipv6" text="v6" value="0x0001"/>
<entry comment="" name="IpAddrType_Ipv4_v6" text="v4_v6" value="0x0002"/>
<entry comment="" name="IpAddrType_Ip_Invalid" text="_Invalid" value="0x0003"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="response" name="OpenReceiveChannelAckMessage" opcode="0x0022" request="0x0105" type="MediaControl">
<fields>
<enum comment="" name="mediaReceptionStatus" subtype="MediaStatus" type="uint32"/>
<ipv4or6 comment="" name="ipAddr" subtype="IPV4orV6Address" type="ipaddr"/>
<integer comment="" declare="yes" name="portNumber" subtype="uint32" type="ipport" use_param="ipAddr"/>
<integer comment="PassThrough PartyId" declare="yes" name="passThroughPartyId" req_resp_key="1" type="uint32"/>
</fields>
<fields beginversion="0" endversion="22" size_gt="20">
<integer comment="CallId" name="callReference" type="uint32"/>
</fields>
</message>
<enum name="StatsProcessingType">
<entries>
<entry comment="" name="StatsProcessingType_clearStats" text="clearStats" value="0x0000"/>
<entry comment="" name="StatsProcessingType_doNotClearStats" text="doNotClearStats" value="0x0001"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="response" name="ConnectionStatisticsResMessage" opcode="0x0023" request="0x0107" type="CallControl">
<fields endversion="17" fixed="yes">
<string comment="" name="directoryNum" size="24" type="char"/>
<integer comment="CallId" declare="yes" name="callReference" req_resp_key="1" type="uint32"/>
<enum comment="Stats Processing Mode" longcomment="What do do after you send the stats" name="statsProcessingMode" subtype="StatsProcessingType" type="uint32"/>
</fields>
<fields beginversion="18" endversion="22" fixed="yes">
<string comment="" name="directoryNum" size="28" type="char"/>
<integer comment="CallId" declare="yes" name="callReference" req_resp_key="1" type="uint32"/>
<integer comment="Stats Processing Mode" longcomment="What do do after you send the stats" name="statsProcessingMode" subtype="StatsProcessingType" type="uint8"/>
</fields>
<fields>
<integer comment="Number of Packets Sent" name="numberPacketsSent" type="uint32"/>
<integer comment="Number of Octets Sent" name="numberOctetsSent" type="uint32"/>
<integer comment="Number of Packets Received" name="numberPacketsReceived" type="uint32"/>
<integer comment="Number of Octets Received" name="numberOctetsReceived" type="uint32"/>
<integer comment="Number of Packets Lost" name="numberPacketsLost" type="uint32"/>
<integer comment="Amount of Jitter" name="jitter" type="uint32"/>
<integer comment="Amount of Latency" name="latency" type="uint32"/>
</fields>
<fields size_gt="64">
<integer comment="Data Size" declare="yes" name="dataSize" type="uint32"/>
<string comment="Statistics" longcomment="variable field size (max: 600]" maxsize="600" name="data" size_fieldname="dataSize" type="char"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="OffHookWithCalingPartyNumberMessage" opcode="0x0024" type="CallControl">
<fields>
<string comment="Calling Party Number" declare="yes" name="callingPartyNumber" size="VariableDirnumSize" type="char"/>
<string comment="Calling Party Voicemail Box Number" declare="yes" name="cgpnVoiceMailbox" size="VariableDirnumSize" type="char"/>
<integer comment="LineId" name="lineInstance" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="SoftKeySetReqMessage" opcode="0x0025" type="RegistrationAndManagement"/>
<enum name="SoftKeySet">
<entries>
<entry name="SoftKeySet_OnHook" text="On Hook" value="0"/>
<entry name="SoftKeySet_Connected" text="Connected" value="1"/>
<entry name="SoftKeySet_OnHold" text="On Hold" value="2"/>
<entry name="SoftKeySet_Ringin" text="Ring In" value="3"/>
<entry name="SoftKeySet_OffHook" text="Off Hook" value="4"/>
<entry name="SoftKeySet_ConnTrans" text="Connected Transferable" value="5"/>
<entry name="SoftKeySet_DigitsFoll" text="Digits Following" value="6"/>
<entry name="SoftKeySet_ConnConf" text="Connected Conference" value="7"/>
<entry name="SoftKeySet_RingOut" text="Ring Out" value="8"/>
<entry name="SoftKeySet_OffHookFeat" text="OffHook with Features" value="9"/>
<entry name="SoftKeySet_InUseHint" text="In Use Hint" value="10"/>
<entry name="SoftKeySet_OnHookStealable" text="On Hook with Stealable Call" value="11"/>
</entries>
</enum>
<enum name="SoftKeyEvent">
<entries>
<entry name="SoftKeyEvent_Redial" text="Redial" value="1"/>
<entry name="SoftKeyEvent_NewCall" text="NewCall" value="2"/>
<entry name="SoftKeyEvent_Hold" text="Hold" value="3"/>
<entry name="SoftKeyEvent_Transfer" text="Transfer" value="4"/>
<entry name="SoftKeyEvent_CfwdAll" text="CfwdAll" value="5"/>
<entry name="SoftKeyEvent_CfwdBusy" text="CfwdBusy" value="6"/>
<entry name="SoftKeyEvent_CfwdNoAnswer" text="CfwdNoAnswer" value="7"/>
<entry name="SoftKeyEvent_BackSpace" text="BackSpace" value="8"/>
<entry name="SoftKeyEvent_EndCall" text="EndCall" value="9"/>
<entry name="SoftKeyEvent_Resume" text="Resume" value="10"/>
<entry name="SoftKeyEvent_Answer" text="Answer" value="11"/>
<entry name="SoftKeyEvent_Info" text="Info" value="12"/>
<entry name="SoftKeyEvent_Confrn" text="Confrn" value="13"/>
<entry name="SoftKeyEvent_Park" text="Park" value="14"/>
<entry name="SoftKeyEvent_Join" text="Join" value="15"/>
<entry name="SoftKeyEvent_MeetMe" text="MeetMe" value="16"/>
<entry name="SoftKeyEvent_PickUp" text="PickUp" value="17"/>
<entry name="SoftKeyEvent_GrpPickup" text="GrpPickup" value="18"/>
<entry name="SoftKeyEvent_YourCurrentOptions" text="Your current options" value="19"/>
<entry name="SoftKeyEvent_OffHook" text="Off Hook" value="20"/>
<entry name="SoftKeyEvent_OnHook" text="On Hook" value="21"/>
<entry name="SoftKeyEvent_RingOut" text="Ring out" value="22"/>
<entry name="SoftKeyEvent_From " text="From " value="23"/>
<entry name="SoftKeyEvent_Connected" text="Connected" value="24"/>
<entry name="SoftKeyEvent_Busy" text="Busy" value="25"/>
<entry name="SoftKeyEvent_LineInUse" text="Line In Use" value="26"/>
<entry name="SoftKeyEvent_CallWaiting" text="Call Waiting" value="27"/>
<entry name="SoftKeyEvent_CallTransfer" text="Call Transfer" value="28"/>
<entry name="SoftKeyEvent_CallPark" text="Call Park" value="29"/>
<entry name="SoftKeyEvent_CallProceed" text="Call Proceed" value="30"/>
<entry name="SoftKeyEvent_InUseRemote" text="In Use Remote" value="31"/>
<entry name="SoftKeyEvent_EnterNumber" text="Enter number" value="32"/>
<entry name="SoftKeyEvent_CallParkAt" text="Call park At" value="33"/>
<entry name="SoftKeyEvent_PrimaryOnly" text="Primary Only" value="34"/>
<entry name="SoftKeyEvent_TempFail" text="Temp Fail" value="35"/>
<entry name="SoftKeyEvent_YouHaveAVoiceMail" text="You Have a VoiceMail" value="36"/>
<entry name="SoftKeyEvent_ForwardedTo" text="Forwarded to" value="37"/>
<entry name="SoftKeyEvent_CanNotCompleteConference" text="Can Not Complete Conference" value="38"/>
<entry name="SoftKeyEvent_NoConferenceBridge" text="No Conference Bridge" value="39"/>
<entry name="SoftKeyEvent_CanNotHoldPrimaryControl" text="Can Not Hold Primary Control" value="40"/>
<entry name="SoftKeyEvent_InvalidConferenceParticipant" text="Invalid Conference Participant" value="41"/>
<entry name="SoftKeyEvent_InConferenceAlready" text="In Conference Already" value="42"/>
<entry name="SoftKeyEvent_NoParticipantInfo" text="No Participant Info" value="43"/>
<entry name="SoftKeyEvent_ExceedMaximumParties" text="Exceed Maximum Parties" value="44"/>
<entry name="SoftKeyEvent_KeyIsNotActive" text="Key Is Not Active" value="45"/>
<entry name="SoftKeyEvent_ErrorNoLicense" text="Error No License" value="46"/>
<entry name="SoftKeyEvent_ErrorDBConfig" text="Error DBConfig" value="47"/>
<entry name="SoftKeyEvent_ErrorDatabase" text="Error Database" value="48"/>
<entry name="SoftKeyEvent_ErrorPassLimit" text="Error Pass Limit" value="49"/>
<entry name="SoftKeyEvent_ErrorUnknown" text="Error Unknown" value="50"/>
<entry name="SoftKeyEvent_ErrorMismatch" text="Error Mismatch" value="51"/>
<entry name="SoftKeyEvent_Conference" text="Conference" value="52"/>
<entry name="SoftKeyEvent_ParkNumber" text="Park Number" value="53"/>
<entry name="SoftKeyEvent_Private" text="Private" value="54"/>
<entry name="SoftKeyEvent_NotEnoughBandwidth" text="Not Enough Bandwidth" value="55"/>
<entry name="SoftKeyEvent_UnknownNumber" text="Unknown Number" value="56"/>
<entry name="SoftKeyEvent_RmLstC" text="RmLstC" value="57"/>
<entry name="SoftKeyEvent_Voicemail" text="Voicemail" value="58"/>
<entry name="SoftKeyEvent_ImmDiv" text="ImmDiv" value="59"/>
<entry name="SoftKeyEvent_Intrcpt" text="Intrcpt" value="60"/>
<entry name="SoftKeyEvent_SetWtch" text="SetWtch" value="61"/>
<entry name="SoftKeyEvent_TrnsfVM" text="TrnsfVM" value="62"/>
<entry name="SoftKeyEvent_DND" text="DND" value="63"/>
<entry name="SoftKeyEvent_DivAll" text="DivAll" value="64"/>
<entry name="SoftKeyEvent_CallBack" text="CallBack" value="65"/>
<entry name="SoftKeyEvent_NetworkCongestionRerouting" text="Network congestion,rerouting" value="66"/>
<entry name="SoftKeyEvent_Barge" text="Barge" value="67"/>
<entry name="SoftKeyEvent_FailedToSetupBarge" text="Failed to setup Barge" value="68"/>
<entry name="SoftKeyEvent_AnotherBargeExists" text="Another Barge exists" value="69"/>
<entry name="SoftKeyEvent_IncompatibleDeviceType" text="Incompatible device type" value="70"/>
<entry name="SoftKeyEvent_NoParkNumberAvailable" text="No Park Number Available" value="71"/>
<entry name="SoftKeyEvent_CallParkReversion" text="CallPark Reversion" value="72"/>
<entry name="SoftKeyEvent_ServiceIsNotActive" text="Service is not Active" value="73"/>
<entry name="SoftKeyEvent_HighTrafficTryAgainLater" text="High Traffic Try Again Later" value="74"/>
<entry name="SoftKeyEvent_QRT" text="QRT" value="75"/>
<entry name="SoftKeyEvent_MCID" text="MCID" value="76"/>
<entry name="SoftKeyEvent_DirTrfr" text="DirTrfr" value="77"/>
<entry name="SoftKeyEvent_Select" text="Select" value="78"/>
<entry name="SoftKeyEvent_ConfList" text="ConfList" value="79"/>
<entry name="SoftKeyEvent_iDivert" text="iDivert" value="80"/>
<entry name="SoftKeyEvent_cBarge" text="cBarge" value="81"/>
<entry name="SoftKeyEvent_CanNotCompleteTransfer" text="Can Not Complete Transfer" value="82"/>
<entry name="SoftKeyEvent_CanNotJoinCalls" text="Can Not Join Calls" value="83"/>
<entry name="SoftKeyEvent_McidSuccessful" text="Mcid Successful" value="84"/>
<entry name="SoftKeyEvent_NumberNotConfigured" text="Number Not Configured" value="85"/>
<entry name="SoftKeyEvent_SecurityError" text="Security Error" value="86"/>
<entry name="SoftKeyEvent_VideoBandwidthUnavailable" text="Video Bandwidth Unavailable" value="87"/>
<entry name="SoftKeyEvent_VideoMode" text="Video Mode" value="88"/>
<entry name="SoftKeyEvent_Record" text="Record" value="202"/>
<entry name="SoftKeyEvent_Dial" text="Dial" value="201"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="event" name="SoftKeyEventMessage" opcode="0x0026" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22">
<enum comment="SoftKey Event" name="softKeyEvent" subtype="SoftKeyEvent" type="uint32"/>
<integer comment="LineId" name="lineInstance" type="uint32"/>
<integer comment="CallId" name="callReference" type="uint32"/>
</fields>
</message>
<enum name="UnRegReasonCode">
<entries>
<entry comment="" name="UnRegReasonCode_Unknown" text="Unknown" value="0x0000"/>
<entry comment="" name="UnRegReasonCode_PowerSaveMode" text="PowerSaveMode" value="0x0001"/>
</entries>
</enum>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="UnregisterReqMessage" opcode="0x0027" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22" size_gt="12">
<enum comment="" name="unRegReasonCode" subtype="UnRegReasonCode" type="uint32"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="SoftKeyTemplateReqMessage" opcode="0x0028" type="RegistrationAndManagement"/>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="request" name="RegisterTokenReq" opcode="0x0029" type="RegistrationAndManagement">
<fields beginversion="0" endversion="22">
<struct comment="" name="sid" type="struct">
<fields>
<string comment="Device Name" name="DeviceName" size="16" type="char"/>
<integer comment="User Id" name="reserved_for_future_use" type="uint32"/>
<integer comment="Device Instance" name="instance" type="uint32"/>
</fields>
</struct>
<integer comment="" name="stationIpAddr" type="uint32"/>
<enum comment="" name="deviceType" subtype="DeviceType" type="uint32"/>
<ipv4or6 comment="" endianness="big" name="stationIpV6Addr" size="16" subtype="uint8" type="ipaddr"/>
</fields>
</message>
<message comment="" direction="dev2pbx" dynamic="no" msgtype="response" name="MediaTransmissionFailureMessage" opcode="0x002a" request="0x008a" type="MediaControl">