aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h248_annex_e.c
blob: af2865ea6460a725b7fb263a07a5b316ab7160b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
/*
 *  packet-h248-annex_e.c
 *  H.248 Annex E
 *
 *  (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
 *
 * $Id$
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif


/*****/
#include <epan/proto.h>
#include <epan/tvbuff.h>
#include <epan/tvbuff-int.h>
#include <epan/tvbparse.h>
/*****/

#include "packet-h248.h"
#define PNAME  "H.248 Annex E"
#define PSNAME "H248E"
#define PFNAME "h248e"
/*
#include <epan/dissectors/packet-alcap.h>
*/
static int proto_h248_annex_E = -1;

static gboolean h248_e_implicit = FALSE;
static gboolean implicit = FALSE;

/* H.248.1 E.1  Generic Package */
static int hf_h248_pkg_generic = -1;
static int hf_h248_pkg_generic_cause_evt = -1;
static int hf_h248_pkg_generic_cause_gencause = -1;
static int hf_h248_pkg_generic_cause_failurecause = -1;
static int hf_h248_pkg_generic_sc_evt = -1;
static int hf_h248_pkg_generic_sc_sig_id = -1;
static int hf_h248_pkg_generic_sc_meth = -1;
static int hf_h248_pkg_generic_sc_slid = -1;
static int hf_h248_pkg_generic_sc_rid = -1;

static gint ett_h248_pkg_generic_cause_evt = -1;
static gint ett_h248_pkg_generic = -1;
static gint ett_h248_pkg_generic_sc_evt = -1;

static const value_string h248_pkg_generic_props_vals[] = {
	{ 0,"Generic Package - Annex E (g)" }, 
	{ 0, NULL }
};

static const value_string h248_pkg_generic_cause_vals[] _U_ = {
	{1, "General Cause (gencause)"},
	{2, "Faiure Cause (failurecause)"},
	{ 0, NULL }
};

static const value_string h248_pkg_generic_cause_gencause_vals[] = {
	{ 1, "Normal Release (NR)"},
	{ 2, "Unavailable Resources (UR)"},
	{ 3, "Failure, Temporary (FT)"},
	{ 4, "Failure, Permanent (FP)"},
	{ 5, "Interworking Error (IW)"},
	{ 6, "Unsupported (UN)"},
	{ 0, NULL }
};

static h248_pkg_param_t h248_pkg_generic_cause_evt_params[] = {
	{ 0x0001, &hf_h248_pkg_generic_cause_gencause, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0002, &hf_h248_pkg_generic_cause_failurecause, h248_param_ber_octetstring, &h248_e_implicit },
	{ 0, NULL, NULL, NULL}
};

static const value_string h248_pkg_generic_sc_meth_vals[] _U_ = {
	{0x0001,"Signal Identity (SigID)"},
	{0x0002,"Termination Method (Meth)"},
	{0x0003,"Signal List ID (SLID)"},
	{0x0004,"Request ID (RID)"},
	{0,NULL}
};

static const value_string h248_pkg_generic_sc_vals[] = {
	{0x0001,"TO - Signal timed out or otherwise completed on its own"},
	{0x0002,"EV - Interrupted by event"},
	{0x0003,"SD - Halted by new Signals Descriptor"},
	{0x0004,"NC - Not completed, other cause"},
	{0x0005,"PI - First to penultimate iteration"},
	{0,NULL}
};

static h248_pkg_param_t h248_pkg_generic_sc_evt_params[] = {
	{ 0x0001, &hf_h248_pkg_generic_sc_sig_id, h248_param_PkgdName, &h248_e_implicit },
	{ 0x0002, &hf_h248_pkg_generic_sc_meth, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0003, &hf_h248_pkg_generic_sc_slid, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0004, &hf_h248_pkg_generic_sc_rid, h248_param_ber_integer, &h248_e_implicit },
	{ 0, NULL, NULL, NULL}
};

static h248_pkg_evt_t h248_pkg_generic_cause_evts[] = {
	{ 0x0001, &hf_h248_pkg_generic_cause_evt, &ett_h248_pkg_generic_cause_evt, h248_pkg_generic_cause_evt_params, h248_pkg_generic_cause_gencause_vals},
	{ 0x0002, &hf_h248_pkg_generic_sc_evt, &ett_h248_pkg_generic_sc_evt, h248_pkg_generic_sc_evt_params, h248_pkg_generic_sc_vals},
	{ 0, NULL, NULL, NULL, NULL}
};

static h248_package_t h248_pkg_generic = {
	0x0001,
	&hf_h248_pkg_generic,
	&ett_h248_pkg_generic,
	h248_pkg_generic_props_vals,
	NULL,
	h248_pkg_generic_cause_vals,
	NULL,
	NULL,
	NULL,
	h248_pkg_generic_cause_evts,
	NULL
};


/* H.248.1 E.2  Base Root Package */
static int hf_h248_pkg_root = -1;
static int hf_h248_pkg_root_maxnrofctx = -1;
static int hf_h248_pkg_root_maxtermsperctx = -1;
static int hf_h248_pkg_root_normalmgexectime = -1;
static int hf_h248_pkg_root_normalmgcexecutiontime = -1;
static int hf_h248_pkg_root_mg_provisionalresponsetimervalue = -1;
static int hf_h248_pkg_root_mgc_provisionalresponsetimervalue = -1;
static int hf_h248_pkg_root_mgc_orginalpendinglimit = -1;
static int hf_h248_pkg_root_mg_orginalpendinglimit = -1;

static gint ett_h248_pkg_root_params		= -1;

static const value_string h248_pkg_root_props_vals[] = {
	{ 0x0000, "Base Root Package - Annex E (root)" },
	{ 0x0001, "Maximum Number of Contexts" },
	{ 0x0002, "Maximum Terminations Per Context" },
	{ 0x0003, "Normal MG Execution Time" },
	{ 0x0004, "Normal MGC Execution Time" },
	{ 0x0005, "MG Provisional Response Timer Value" },
	{ 0x0006, "MGC Provisional Response Timer Value" },
	{ 0x0007, "MGC Originated Pending Limit" },
	{ 0x0008, "MG Originated Pending Limit" },
	{ 0, NULL }
};

static h248_pkg_param_t h248_pkg_root_properties[] = {
	{ 0x0001, &hf_h248_pkg_root_maxnrofctx, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0002, &hf_h248_pkg_root_maxtermsperctx, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0003, &hf_h248_pkg_root_normalmgexectime, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0004, &hf_h248_pkg_root_normalmgcexecutiontime, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0005, &hf_h248_pkg_root_mg_provisionalresponsetimervalue, h248_param_ber_integer, &implicit },
	{ 0x0006, &hf_h248_pkg_root_mgc_provisionalresponsetimervalue, h248_param_ber_integer, &implicit },
	{ 0x0007, &hf_h248_pkg_root_mgc_orginalpendinglimit, h248_param_ber_integer, &implicit },
	{ 0x0008, &hf_h248_pkg_root_mg_orginalpendinglimit, h248_param_ber_integer, &implicit },
	{ 0, NULL, NULL, NULL}
};

static h248_package_t h248_pkg_root = {
	0x0002,
	&hf_h248_pkg_root,
	&ett_h248_pkg_root_params,
	h248_pkg_root_props_vals,
	NULL,
	NULL,
	NULL,
	h248_pkg_root_properties,
	NULL,
	NULL,
	NULL
};

/* H.248.1 E.3  Tone Generator Package */
static int hf_h248_pkg_tonegen				= -1;
static int hf_h248_pkg_tonegen_sig_pt		= -1;
static int hf_h248_pkg_tonegen_sig_pt_tl	= -1;
static int hf_h248_pkg_tonegen_sig_pt_ind	= -1;
static int hf_h248_pkg_tonegen_sig_pg_btd	= -1;

static gint ett_h248_pkg_tonegen_params		= -1;
static gint ett_h248_pkg_tonegen_sig_pt		= -1;

static const value_string h248_pkg_tonegen_props_vals[] = {
	{ 0x0000, "Tone Generator - Annex E (tonegen)" },
	{ 0, NULL }
};

static const value_string h248_pkg_tonegen_sigs_vals[] = {
	{ 0x0001, "Play Tone (pt)" },
	{ 0, NULL }
};

static const value_string h248_pkg_tonegen_pt_param_vals[] = {
	{ 0x0001, "Tone ID List (tl)" },
	{ 0x0002, "Inter-signal duration (ind)" },
	{ 0x0003, "Tone Direction (td)" },
	{ 0, NULL }
};

static const value_string h248_pkg_tonegen_pt_btd_param_vals[] = {
	{ 0x0001, "External (EXT)" },
	{ 0x0002, "Internal (INT)" },
	{ 0x0003, "Both (BOTH)" },
	{ 0, NULL }
};

static h248_pkg_param_t h248_pkg_tonegen_sig_params[] = {
	{ 0x0001, &hf_h248_pkg_tonegen_sig_pt_tl, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0002, &hf_h248_pkg_tonegen_sig_pt_ind, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0003, &hf_h248_pkg_tonegen_sig_pg_btd, h248_param_ber_integer, &implicit },
	{ 0, NULL, NULL, NULL}
};

static const h248_pkg_sig_t h248_pkg_tonegen_signals[] = {
	{ 0x0001, &hf_h248_pkg_tonegen_sig_pt, &ett_h248_pkg_tonegen_sig_pt, h248_pkg_tonegen_sig_params, h248_pkg_tonegen_pt_param_vals },
	{ 0, NULL, NULL, NULL, NULL }
};

static h248_package_t h248_pkg_tonegen = {
	0x0003,
	&hf_h248_pkg_tonegen,
	&ett_h248_pkg_tonegen_params,
	h248_pkg_tonegen_props_vals,
	h248_pkg_tonegen_sigs_vals, 
	NULL,NULL,NULL,
	h248_pkg_tonegen_signals,
	NULL, 
	NULL
};


/*  H.248.1 E.4  Tone Detector Package */
static int hf_h248_pkg_tonedet = -1;
static int hf_h248_pkg_tonedet_evt_std = -1;
static int hf_h248_pkg_tonedet_evt_etd = -1;
static int hf_h248_pkg_tonedet_evt_ltd = -1;

static int hf_h248_pkg_tonedet_evt_tl_param = -1;
static int hf_h248_pkg_tonedet_evt_dur_param = -1;
static int hf_h248_pkg_tonedet_evt_tid_param = -1;
 
static gint ett_h248_pkg_tonedet = -1;
static gint ett_h248_pkg_tonedet_evt_std = -1;
static gint ett_h248_pkg_tonedet_evt_etd = -1;
static gint ett_h248_pkg_tonedet_evt_ltd = -1;

static const value_string h248_pkg_tonedet_props_vals[] = {
	{ 0x0000, "Tone Detection Package - Annex E  (tonedet)" },
	{ 0, NULL }
};

static const value_string h248_pkg_tonedet_events_vals[] = {
	{ 0x0001, "Start Tone Detected (std)" },
	{ 0x0002, "End Tone Detected (etd)" },
	{ 0x0003, "Long Tone Detected (ltd)" },
	{ 0, NULL }
};

static const value_string h248_pkg_tonedet_evt_param_vals[] = {
	{ 0x0001, "Tone ID List (tl)" },
	{ 0x0002, "Duration (dur)" },
	{ 0x0003, "Tone ID (tid)" },
	{ 0, NULL }
};

static const value_string h248_pkg_tonedet_tl_params_vals[] = {
	{ 0x0000, "Wildcard (*)" },
	{ 0, NULL }
};

static const h248_pkg_param_t h248_pkg_tonedet_event_params[] = {
	{ 0x0001, &hf_h248_pkg_tonedet_evt_tl_param, h248_param_uint_item, &implicit },
	{ 0x0002, &hf_h248_pkg_tonedet_evt_dur_param, h248_param_ber_integer, &implicit },
	{ 0x0003, &hf_h248_pkg_tonedet_evt_tid_param, h248_param_ber_integer, &implicit },
	{ 0, NULL, NULL, NULL }
};

static const h248_pkg_evt_t h248_pkg_tonedet_events[] = {
	{ 0x0001, &hf_h248_pkg_tonedet_evt_std, &ett_h248_pkg_tonedet_evt_std, h248_pkg_tonedet_event_params, h248_pkg_tonedet_evt_param_vals },
	{ 0x0002, &hf_h248_pkg_tonedet_evt_etd, &ett_h248_pkg_tonedet_evt_etd, h248_pkg_tonedet_event_params, h248_pkg_tonedet_evt_param_vals },
	{ 0x0003, &hf_h248_pkg_tonedet_evt_ltd, &ett_h248_pkg_tonedet_evt_ltd, h248_pkg_tonedet_event_params, h248_pkg_tonedet_evt_param_vals },
	{ 0, NULL, NULL, NULL, NULL }
};

static h248_package_t h248_pkg_tonedet = {
	0x0004,
	&hf_h248_pkg_tonedet,
	&ett_h248_pkg_tonedet,
	h248_pkg_tonedet_props_vals,
	NULL,
	h248_pkg_tonedet_events_vals,
	NULL,
	NULL,
	NULL,
	h248_pkg_tonedet_events, 
	NULL
};


/* E.5 Basic DTMF Generator Package */
static int hf_h248_pkg_dg			= -1;
static int hf_h248_pkg_dg_sig_pt	= -1;
static int hf_h248_pkg_dg_sig_d0	= -1;
static int hf_h248_pkg_dg_sig_d1	= -1;
static int hf_h248_pkg_dg_sig_d2	= -1;
static int hf_h248_pkg_dg_sig_d3	= -1;
static int hf_h248_pkg_dg_sig_d4	= -1;
static int hf_h248_pkg_dg_sig_d5	= -1;
static int hf_h248_pkg_dg_sig_d6	= -1;
static int hf_h248_pkg_dg_sig_d7	= -1;
static int hf_h248_pkg_dg_sig_d8	= -1;
static int hf_h248_pkg_dg_sig_d9	= -1;
static int hf_h248_pkg_dg_sig_da	= -1;
static int hf_h248_pkg_dg_sig_db	= -1;
static int hf_h248_pkg_dg_sig_dc	= -1;
static int hf_h248_pkg_dg_sig_dd	= -1;
static int hf_h248_pkg_dg_sig_ds	= -1;
static int hf_h248_pkg_dg_sig_do	= -1;
static int hf_h248_pkg_dg_sig_params	= -1;

static gint ett_h248_pkg_dg			= -1;
static gint ett_h248_pkg_dg_sig_pt	= -1;
static gint ett_h248_pkg_dg_sig_d0	= -1;
static gint ett_h248_pkg_dg_sig_d1	= -1;
static gint ett_h248_pkg_dg_sig_d2	= -1;
static gint ett_h248_pkg_dg_sig_d3	= -1;
static gint ett_h248_pkg_dg_sig_d4	= -1;
static gint ett_h248_pkg_dg_sig_d5	= -1;
static gint ett_h248_pkg_dg_sig_d6	= -1;
static gint ett_h248_pkg_dg_sig_d7	= -1;
static gint ett_h248_pkg_dg_sig_d8	= -1;
static gint ett_h248_pkg_dg_sig_d9	= -1;
static gint ett_h248_pkg_dg_sig_da	= -1;
static gint ett_h248_pkg_dg_sig_db	= -1;
static gint ett_h248_pkg_dg_sig_dc	= -1;
static gint ett_h248_pkg_dg_sig_dd	= -1;
static gint ett_h248_pkg_dg_sig_ds	= -1;
static gint ett_h248_pkg_dg_sig_do	= -1;
 
static const value_string h248_pkg_dg_props_vals[] = {
	{ 0x0000, "Basic DTMF Generator Package - Annex E (dg)" },
	{ 0, NULL }
};

static const value_string  h248_pkg_dg_signals_vals[] = {
	/* from tonegeg */
	{ 0x0001, "Tone ID List (tl)" },
	{ 0x0002, "End Tone Detected (etd)" },
	{ 0x0003, "Long Tone Detected (ltd)" },
	
	/* from dd */
	{ 0x0010, "0 (d0)"},
	{ 0x0011, "1 (d1)"},
	{ 0x0012, "2 (d2)"},
	{ 0x0013, "3 (d3)"},
	{ 0x0014, "4 (d4)"},
	{ 0x0015, "5 (d5)"},
	{ 0x0016, "6 (d6)"},
	{ 0x0017, "7 (d7)"},
	{ 0x0018, "8 (d8)"},
	{ 0x0019, "9 (d9)"},
	{ 0x001a, "A (dA)"},
	{ 0x001b, "B (dB)"},
	{ 0x001c, "C (dC)"},
	{ 0x001d, "D (dD)"},
	{ 0x0020, "* (ds)"},
	{ 0x0021, "# (do)"},
	{0,NULL}
};

static const value_string h248_pkg_dg_sig_params_vals[] = {
	{ 0x0001, "Tone Direction (btd)" },
	{ 0, NULL }
};

static const value_string h248_pkg_dg_sig_btd_vals[] = {
	{ 0x0001, "External (EXT)" },
	{ 0x0002, "Internal (INT)" },
	{ 0x0003, "Both (BOTH)" },
	{ 0, NULL }
};

static const h248_pkg_param_t h248_pkg_dg_signal_params[] = {
	{ 0x0001, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0010, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0011, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0012, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0013, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0014, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0015, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0016, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0017, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0018, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0019, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x001a, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x001b, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x001c, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x001d, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0020, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0x0021, &hf_h248_pkg_dg_sig_params, h248_param_ber_integer, &implicit },
	{ 0, NULL, NULL, NULL }
};
	
/* Signals defenitions */
static h248_pkg_sig_t h248_pkg_dg_signals[] = {
	{ 0X0001, &hf_h248_pkg_dg_sig_pt, &ett_h248_pkg_dg_sig_pt, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0010, &hf_h248_pkg_dg_sig_d0, &ett_h248_pkg_dg_sig_d0, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0011, &hf_h248_pkg_dg_sig_d1, &ett_h248_pkg_dg_sig_d1, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0012, &hf_h248_pkg_dg_sig_d2, &ett_h248_pkg_dg_sig_d2, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0013, &hf_h248_pkg_dg_sig_d3, &ett_h248_pkg_dg_sig_d3, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0014, &hf_h248_pkg_dg_sig_d4, &ett_h248_pkg_dg_sig_d4, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0015, &hf_h248_pkg_dg_sig_d5, &ett_h248_pkg_dg_sig_d5, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0016, &hf_h248_pkg_dg_sig_d6, &ett_h248_pkg_dg_sig_d6, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0017, &hf_h248_pkg_dg_sig_d7, &ett_h248_pkg_dg_sig_d7, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0018, &hf_h248_pkg_dg_sig_d8, &ett_h248_pkg_dg_sig_d8, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0019, &hf_h248_pkg_dg_sig_d9, &ett_h248_pkg_dg_sig_d9, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x001a, &hf_h248_pkg_dg_sig_da, &ett_h248_pkg_dg_sig_da, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x001b, &hf_h248_pkg_dg_sig_db, &ett_h248_pkg_dg_sig_db, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x001c, &hf_h248_pkg_dg_sig_dc, &ett_h248_pkg_dg_sig_dc, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x001d, &hf_h248_pkg_dg_sig_dd, &ett_h248_pkg_dg_sig_dd, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0020, &hf_h248_pkg_dg_sig_ds, &ett_h248_pkg_dg_sig_ds, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0x0021, &hf_h248_pkg_dg_sig_do, &ett_h248_pkg_dg_sig_do, h248_pkg_dg_signal_params,h248_pkg_dg_signals_vals },
	{ 0, NULL, NULL, NULL, NULL}
};

/* Packet defenitions */
static h248_package_t h248_pkg_dg = {
	0x0005,
	&hf_h248_pkg_dg,
	&ett_h248_pkg_dg,
	h248_pkg_dg_props_vals,
	h248_pkg_dg_signals_vals,
	NULL, NULL, NULL,
	h248_pkg_dg_signals,	/* signals		*/
	NULL, NULL
};

/* H248.1 E.6 DTMF Detection Package (dd) */

static int hf_h248_pkg_dd			= -1;
static int hf_h248_pkg_dd_evt_std	= -1;
static int hf_h248_pkg_dd_evt_etd	= -1;
static int hf_h248_pkg_dd_evt_ltd	= -1;
static int hf_h248_pkg_dd_evt_ce	= -1;
/*static int hf_h248_pkg_dd_evt_d0	= -1;
static int hf_h248_pkg_dd_evt_d1	= -1;
static int hf_h248_pkg_dd_evt_d2	= -1;
static int hf_h248_pkg_dd_evt_d3	= -1;
static int hf_h248_pkg_dd_evt_d4	= -1;
static int hf_h248_pkg_dd_evt_d5	= -1;
static int hf_h248_pkg_dd_evt_d6	= -1;
static int hf_h248_pkg_dd_evt_d7	= -1;
static int hf_h248_pkg_dd_evt_d8	= -1;
static int hf_h248_pkg_dd_evt_d9	= -1;
static int hf_h248_pkg_dd_evt_da	= -1;
static int hf_h248_pkg_dd_evt_db	= -1;
static int hf_h248_pkg_dd_evt_dc	= -1;
static int hf_h248_pkg_dd_evt_dd	= -1;
static int hf_h248_pkg_dd_evt_ds	= -1;
static int hf_h248_pkg_dd_evt_do	= -1;*/
static int hf_h248_pkg_dd_evt_ce_ds		= -1;
static int hf_h248_pkg_dd_evt_ce_meth	= -1;
static int hf_h248_pkg_dd_evt_tl_param	= -1;
static int hf_h248_pkg_dd_evt_dur_param	= -1;
static int hf_h248_pkg_dd_evt_tid_param	= -1;

static gint ett_h248_pkg_dd				= -1;
static gint ett_h248_pkg_dd_evt_ce		= -1;
static gint ett_h248_pkg_dd_evt_std		= -1;
static gint ett_h248_pkg_dd_evt_etd		= -1;
static gint ett_h248_pkg_dd_evt_ltd		= -1;

static const value_string h248_pkg_dd_props_vals[] = {
	{ 0x0000, "DTMF Detection Package - Annex E (dd)" },
	{ 0, NULL }
};

static const value_string  h248_pkg_dd_event_vals[] = {
	/* from tonedet */
	{ 0x0000, "Wildcard (*)" },
	{ 0x0001, "Start Tone Detected (std)" },
	{ 0x0002, "End Tone Detected (etd)" },
	{ 0x0003, "Long Tone Detected (ltd)" },
	{ 0x0004, "Digit Completion Map (ce)" },
	
	/* from dd */
	{ 0x0010, "0 (d0)"},
	{ 0x0011, "1 (d1)"},
	{ 0x0012, "2 (d2)"},
	{ 0x0013, "3 (d3)"},
	{ 0x0014, "4 (d4)"},
	{ 0x0015, "5 (d5)"},
	{ 0x0016, "6 (d6)"},
	{ 0x0017, "7 (d7)"},
	{ 0x0018, "8 (d8)"},
	{ 0x0019, "9 (d9)"},
	{ 0x001a, "A (dA)"},
	{ 0x001b, "B (dB)"},
	{ 0x001c, "C (dC)"},
	{ 0x001d, "D (dD)"},
	{ 0x0020, "* (ds)"},
	{ 0x0021, "# (do)"},
	{0,NULL}
};

static const value_string h248_pkg_dd_event_params_vals[] = {
	{ 0x0001, "Unambiguous Match (UM)" },
	{ 0x0002, "Partial Match (PM)" },
	{ 0x0003, "Full Match (FM)" },
	{ 0, NULL }
};

static const value_string h248_pkg_dd_ce_vals[] = {
	{ 0x0001, "Digit String (ds)" },
	{ 0x0003, "Termination Method (meth)" },
	{ 0, NULL }
};

static h248_pkg_param_t h248_pkg_dd_ds_events[] = {
	{ 0x0001, &hf_h248_pkg_dd_evt_ce_ds, h248_param_ber_octetstring, &implicit },
	{ 0x0003, &hf_h248_pkg_dd_evt_ce_meth, h248_param_ber_integer, &implicit },
	{ 0, NULL, NULL, NULL }
};

static const h248_pkg_param_t h248_pkg_dd_event_params[] = {
	{ 0x0001, &hf_h248_pkg_dd_evt_tl_param, h248_param_ber_integer, &implicit },
	{ 0x0002, &hf_h248_pkg_dd_evt_dur_param, h248_param_ber_integer, &implicit },
	{ 0x0003, &hf_h248_pkg_dd_evt_tid_param, h248_param_ber_integer, &implicit },
	{ 0, NULL, NULL, NULL }
};


static h248_pkg_evt_t h248_pkg_dd_events[] = {
	{ 0x0001, &hf_h248_pkg_dd_evt_std, &ett_h248_pkg_dd_evt_std, h248_pkg_dd_event_params, h248_pkg_dd_event_vals },
	{ 0x0002, &hf_h248_pkg_dd_evt_etd, &ett_h248_pkg_dd_evt_etd, h248_pkg_dd_event_params, h248_pkg_dd_event_vals },
	{ 0x0003, &hf_h248_pkg_dd_evt_ltd, &ett_h248_pkg_dd_evt_ltd, h248_pkg_dd_event_params, h248_pkg_dd_event_vals },
	{ 0x0004,&hf_h248_pkg_dd_evt_ce, &ett_h248_pkg_dd_evt_ce, h248_pkg_dd_ds_events, h248_pkg_dd_ce_vals},
	{ 0, NULL, NULL, NULL, NULL }
};

static h248_package_t h248_pkg_dd = {
	0x0006,
	&hf_h248_pkg_dd,
	&ett_h248_pkg_dd,
	h248_pkg_dd_props_vals,
	NULL, 
	h248_pkg_dd_event_vals,
	NULL,
	NULL, NULL,
	h248_pkg_dd_events,
	NULL
};

/* H.248.1.E.7 Call Progress Tones Generator package */
static int hf_h248_pkg_cg				= -1;
static int hf_h248_pkg_cg_sig_pt		= -1;
static int hf_h248_pkg_cg_sig_pt_tl		= -1;
static int hf_h248_pkg_cg_sig_pt_ind	= -1;
static int hf_h248_pkg_cg_sig_pt_btd	= -1;
static int hf_h248_pkg_cg_sig_dt		= -1;
static int hf_h248_pkg_cg_sig_rt		= -1;
static int hf_h248_pkg_cg_sig_bt		= -1;
static int hf_h248_pkg_cg_sig_ct		= -1;
static int hf_h248_pkg_cg_sig_sit		= -1;
static int hf_h248_pkg_cg_sig_wt		= -1;
static int hf_h248_pkg_cg_sig_prt		= -1;
static int hf_h248_pkg_cg_sig_cw		= -1;
static int hf_h248_pkg_cg_sig_cr		= -1;

static gint ett_h248_pkg_cg_params			= -1;
static gint ett_h248_pkg_cg_sig_pt			= -1;
static gint ett_h248_pkg_cg_sig_dt			= -1;
static gint ett_h248_pkg_cg_sig_rt			= -1;
static gint ett_h248_pkg_cg_sig_bt			= -1;
static gint ett_h248_pkg_cg_sig_ct			= -1;
static gint ett_h248_pkg_cg_sig_sit			= -1;
static gint ett_h248_pkg_cg_sig_wt			= -1;
static gint ett_h248_pkg_cg_sig_prt			= -1;
static gint ett_h248_pkg_cg_sig_cw			= -1;
static gint ett_h248_pkg_cg_sig_cr			= -1;

static const value_string h248_pkg_cg_props_vals[] = {
	{ 0x0000, "Call Progress Tones Generator - Annex E (cg)" },
	{ 0, NULL }
};

static const value_string h248_pkg_cg_sig_cd_evt_vals[] = {
	{ 0x0001, "Play Tone (pt)" },
	{ 0x0030, "Dial Tone"},
	{ 0x0031, "Ring Tone" },
	{ 0x0032, "Busy Tone" },
	{ 0x0033, "Congestion Tone" },
	{ 0x0034, "Special Information Tone" },
	{ 0x0035, "(Recording) Warning Tone" },
	{ 0x0036, "Payphone Recognition Tone" },
	{ 0x0037, "Call Waiting Tone" },
	{ 0x0038, "Caller Waiting Tone" },
	{ 0, NULL }
};

static const value_string h248_pkg_cg_sig_pt_param_vals[] = {
	{ 0x0001, "Tone ID List (tl)"},
	{ 0x0002, "Inter-signal duration (ind)" },
	{ 0x0003, "Tone Direction (td)" },
	{ 0, NULL }
};

static const value_string h248_pkg_cg_pt_btd_param_vals[] = {
	{ 0x0001, "External (EXT)" },
	{ 0x0002, "Internal (INT)" },
	{ 0x0003, "Both (BOTH)" },
	{ 0, NULL }
};

static const h248_pkg_param_t h248_pkg_cg_sig_pt_params[] = {
	{ 0x0001, &hf_h248_pkg_cg_sig_pt_tl, h248_param_ber_integer, &implicit },
	{ 0x0002, &hf_h248_pkg_cg_sig_pt_ind, h248_param_ber_integer, &implicit },
	{ 0x0003, &hf_h248_pkg_cg_sig_pt_btd, h248_param_ber_integer, &implicit },
	{ 0, NULL, NULL, NULL}
};

static const h248_pkg_sig_t h248_pkg_cg_signals_cd_events[] = {
	{ 0x0001, &hf_h248_pkg_cg_sig_pt,	&ett_h248_pkg_cg_sig_pt,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0030, &hf_h248_pkg_cg_sig_dt,	&ett_h248_pkg_cg_sig_dt,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0031, &hf_h248_pkg_cg_sig_rt,	&ett_h248_pkg_cg_sig_rt,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0032, &hf_h248_pkg_cg_sig_bt,	&ett_h248_pkg_cg_sig_bt,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0033, &hf_h248_pkg_cg_sig_ct,	&ett_h248_pkg_cg_sig_ct,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0034, &hf_h248_pkg_cg_sig_sit,	&ett_h248_pkg_cg_sig_sit,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0035, &hf_h248_pkg_cg_sig_wt,	&ett_h248_pkg_cg_sig_wt,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0036, &hf_h248_pkg_cg_sig_prt,	&ett_h248_pkg_cg_sig_prt,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0037, &hf_h248_pkg_cg_sig_cw,	&ett_h248_pkg_cg_sig_cw,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0x0038, &hf_h248_pkg_cg_sig_cr,	&ett_h248_pkg_cg_sig_cr,	h248_pkg_cg_sig_pt_params, h248_pkg_cg_sig_pt_param_vals },
	{ 0, NULL, NULL, NULL, NULL }
};

static h248_package_t h248_pkg_cg = {
	0x0007,
	&hf_h248_pkg_cg,
	&ett_h248_pkg_cg_params,
	h248_pkg_cg_props_vals,
	h248_pkg_cg_sig_cd_evt_vals,
	NULL,NULL,			/* value_stings:  event, stats */
	NULL,  /* dissectors: prop */
	h248_pkg_cg_signals_cd_events,
	NULL,		/* disectors: events */
	NULL		/* dissectors: stats */
};

/* H.248.1 E.8 - Call Tones Detection Package */
static int hf_h248_pkg_cd		= -1;

static gint ett_h248_pkg_cd		= -1;

static const value_string h248_pkg_cd_params_vals[] = {
	{ 0x0000, "Call Progress Tones Detection Package (cd)" },
	{ 0, NULL }
};

static h248_package_t h248_pkg_cd = {
	0x0008,
	&hf_h248_pkg_cd,
	&ett_h248_pkg_cd,
	h248_pkg_cd_params_vals,
	NULL,
	h248_pkg_cg_sig_cd_evt_vals,
	NULL,
	NULL,NULL,
	(h248_pkg_evt_t *)(void*)h248_pkg_cg_signals_cd_events,
	NULL
};

/* H.248.1 E.9 Analog Line Supervision Package */
static int hf_h248_pkg_al = -1;
static int hf_h248_pkg_al_sig_cadence = -1;
static int hf_h248_pkg_al_sig_cadence_on_off = -1;
static int hf_h248_pkg_al_sig_freq = -1;
static int hf_h248_pkg_al_evt_onhook = -1;
static int hf_h248_pkg_al_evt_offhook = -1;
static int hf_h248_pkg_al_evt_flashhook = -1;
static int hf_h248_pkg_al_evt_onhook_par_strict = -1;
static int hf_h248_pkg_al_evt_offhook_par_strict = -1;
static int hf_h248_pkg_al_evt_onhook_par_init = -1;
static int hf_h248_pkg_al_evt_offhook_par_init = -1;
static int hf_h248_pkg_al_evt_flashhook_par_mindur = -1;

static gint ett_h248_pkg_al = -1;
static gint ett_h248_pkg_al_sig_cadence = -1;
static gint ett_h248_pkg_al_sig_freq = -1;
static gint ett_h248_pkg_al_evt_onhook = -1;
static gint ett_h248_pkg_al_evt_offhook = -1;
static gint ett_h248_pkg_al_evt_flashhook = -1;

static const value_string h248_pkg_al_props_vals[] = {
	{ 0x0000, "Analog Line Supervision Package - Annex E (al)" },
	{ 0, NULL }
};

static const value_string h248_pkg_al_sig_params_vals[] = {
	{ 1, "One" },
	{ 2, "Two" },
	{ 0x0006, "Cadence" },
	{ 0x0007, "Frequency (Hz)" },
	{ 0, NULL }
};

static const value_string  h248_pkg_al_evt_onhook_params_vals[] = {
	{ 0x0001, "strict"},
	{ 0x0002, "init"},
	{ 0, NULL}
};

static const value_string  h248_pkg_al_evt_flashhook_params_vals[] = {
	{ 0x0001, "mindur"},
	{ 0, NULL}
};

/* Packet defenitions */
static const value_string h248_pkg_al_sig_evts_vals[] _U_ = {
	/* Signals */
	{   0x0002, "ri (Ring)" },
	/* Events */
	{   0x0004, "on (On-hook)" },
	{   0x0005, "off (Off-hook)" },
	{   0x0006, "fl (Flashhook)" },
	{0,     NULL},
};

/* Events defenitions */
static const value_string h248_pkg_al_evt_onhook_strict_vals[] = {
	{ 0, "exact"},
	{ 1, "state"},
	{ 2, "failWrong"},
	{ 0, NULL }
};

static const true_false_string h248_pkg_al_evt_onhook_par_init_vals = {
	"already on-hook",
	"actual state transition to on-hook"
};

static const true_false_string h248_pkg_al_evt_offhook_par_init_vals = {
	"already off-hook",
	"actual state transition to off-hook"
};


static h248_pkg_param_t h248_pkg_al_sig_cadence[] = {
	{ 0x0006, &hf_h248_pkg_al_sig_cadence_on_off, h248_param_ber_octetstring, &h248_e_implicit },
	{ 0, NULL, NULL, NULL }
};

static h248_pkg_param_t  h248_pkg_al_evt_onhook_params[] = {
	{ 0x0001, &hf_h248_pkg_al_evt_onhook_par_strict, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0002, &hf_h248_pkg_al_evt_onhook_par_init, h248_param_ber_boolean, &h248_e_implicit },
	{ 0, NULL, NULL, NULL}
};

static h248_pkg_param_t  h248_pkg_al_evt_offhook_params[] = {
	{ 0x0001, &hf_h248_pkg_al_evt_offhook_par_strict, h248_param_ber_integer, &h248_e_implicit },
	{ 0x0002, &hf_h248_pkg_al_evt_offhook_par_init, h248_param_ber_boolean, &h248_e_implicit },
	{ 0, NULL, NULL, NULL}
};

static h248_pkg_param_t  h248_pkg_al_evt_flashhook_params[] = {
	{ 0x0001, &hf_h248_pkg_al_evt_flashhook_par_mindur, h248_param_ber_integer, &h248_e_implicit },
	{ 0, NULL, NULL, NULL}
};

static h248_pkg_sig_t h248_pkg_al_sig[] = {
	{ 0x0002, &hf_h248_pkg_al_sig_cadence, &ett_h248_pkg_al_sig_cadence, h248_pkg_al_sig_cadence, h248_pkg_al_sig_params_vals},
	{ 0, NULL, NULL, NULL, NULL }
};

static h248_pkg_evt_t h248_pkg_al_evts[] = {
	{ 0x0004, &hf_h248_pkg_al_evt_onhook, &ett_h248_pkg_al_evt_onhook, h248_pkg_al_evt_onhook_params, h248_pkg_al_evt_onhook_params_vals},
	{ 0x0005, &hf_h248_pkg_al_evt_offhook, &ett_h248_pkg_al_evt_offhook, h248_pkg_al_evt_offhook_params, h248_pkg_al_evt_onhook_params_vals },
	{ 0x0006, &hf_h248_pkg_al_evt_flashhook, &ett_h248_pkg_al_evt_flashhook, h248_pkg_al_evt_flashhook_params, h248_pkg_al_evt_flashhook_params_vals },

	{ 0, NULL, NULL, NULL, NULL}
};

static h248_package_t h248_pkg_al = {
	0x0009,
	&hf_h248_pkg_al,
	&ett_h248_pkg_al,
	h248_pkg_al_props_vals,
	h248_pkg_al_sig_evts_vals,
	h248_pkg_al_sig_evts_vals,
	NULL,
	NULL,						/* Properties */
	h248_pkg_al_sig,			/* signals */
	h248_pkg_al_evts,			/* events */
	NULL						/* statistics */
};


/* H.248.1 E.10 - Basic Continuity Package */
static int hf_h248_pkg_ct		= -1;
static gint ett_h248_pkg_ct		= -1;

static const value_string h248_pkg_ct_props_vals[] = {
	{ 0x0000, "Basic Continuity Package (ct)" },
	{ 0, NULL }
};

static const value_string h248_pkg_ct_evt_sig_vals[] = {
	{ 0x0003, "Continuity Test (ct)" },
	{ 0x0004, "Respond (rsp)" },
	{ 0x0005, "Completion (cmp)" },
	{ 0, NULL }
};

static h248_package_t h248_pkg_ct = {
	0x000a,
	&hf_h248_pkg_ct,
	&ett_h248_pkg_ct,
	h248_pkg_ct_props_vals,
	h248_pkg_ct_evt_sig_vals,
	h248_pkg_ct_evt_sig_vals,
	NULL, 
	NULL, NULL, NULL, NULL
};

/* H.248.1 E.11 Network Package */
static int hf_h248_pkg_nt		= -1;
static gint ett_h248_pkg_nt		= -1;

static const value_string h248_pkg_nt_props_evt_stats_vals[] = {
	{ 0x0000, "Network Package (nt)" },
	{ 0x0001, "Duration (dur)" },
	{ 0x0002, "Octets Sent (os)" },
	{ 0x0003, "Octets Received (or)" },
	{ 0x0005, "Network Failure (netfail)" },
	{ 0x0006, "Quality Alert (qualert)" },
	{ 0x0007, "Maximum Jitter Buffer (jit)" },
	{ 0, NULL }
};

static h248_package_t h248_pkg_nt = {
	0x000b,
	&hf_h248_pkg_nt,
	&ett_h248_pkg_nt,
	h248_pkg_nt_props_evt_stats_vals,
	h248_pkg_nt_props_evt_stats_vals,
	NULL,
	h248_pkg_nt_props_evt_stats_vals,
	NULL, NULL, NULL, NULL
};

/* H.248.1 E.12 RTP package */
static int hf_h248_pkg_rtp = -1;
static int hf_h248_pkg_rtp_stat_ps = -1;

static gint ett_h248_pkg_rtp = -1;

static const value_string h248_pkg_rtp_stat_vals[] _U_ = {
	{ 0x0004, "ps"},
	{ 0, NULL}
};

static const value_string h248_pkg_rtp_props_vals[] = {
	{   0x0000, "RTP Package - Annex E (rtp)" },
	{   0x0001, "pltrans (Payload Transition)" },
	{   0x0004, "ps (Packets Sent)" },
	{   0x0005, "pr (Packets Received)" },
	{   0x0006, "pl (Packet Loss)" },
	{   0x0007, "jit (Jitter)" },
	{   0x0008, "delay (Delay)" },
	{0,     NULL},
};

static h248_pkg_stat_t h248_pkg_rtp_stat[] = {
	{ 0x0004, &hf_h248_pkg_rtp_stat_ps, &ett_h248_pkg_rtp, NULL,NULL},
};

/* Packet defenitions */
static h248_package_t h248_pkg_rtp = {
	0x000c,
	&hf_h248_pkg_rtp,
	&ett_h248_pkg_rtp,
	h248_pkg_rtp_props_vals,
	NULL,
	NULL,
	NULL,
	NULL,						/* Properties */
	NULL,						/* signals */
	NULL,						/* events */
	h248_pkg_rtp_stat			/* statistics */
};

/* H.248.1 E.13 TDM Circuit Package */
static int hf_h248_pkg_tdmc = -1;
static int hf_h248_pkg_tdmc_ec = -1;
static int hf_h248_pkg_tdmc_gain = -1;

static gint ett_h248_pkg_tdmc = -1;

static const true_false_string h248_tdmc_ec_vals = {
	"On",
	"Off"
};
static const value_string h248_pkg_tdmc_props_vals[] = {
	{ 0x0000, "TDM Circuit Package - Annex E (tdmc)" },
	{ 0x0008, "Echo Cancellation (ec)"},
	{ 0x000a, "Gain Control (gain)"},
	{ 0, NULL}
};


static h248_pkg_param_t h248_pkg_tdmc_props[] = {
	{ 0x0008, &hf_h248_pkg_tdmc_ec, h248_param_ber_boolean, &h248_e_implicit },
	{ 0x000a, &hf_h248_pkg_tdmc_gain, h248_param_ber_integer, &h248_e_implicit },
	{ 0, NULL, NULL, NULL}
};

static h248_package_t h248_pkg_tdmc = {
	0x000d,
	&hf_h248_pkg_tdmc,
	&ett_h248_pkg_tdmc,
	h248_pkg_tdmc_props_vals,
	NULL,
	NULL,
	NULL,
	h248_pkg_tdmc_props,		/* Properties */
	NULL,						/* signals */
	NULL,						/* events */
	NULL						/* statistics */
};



void proto_register_h248_annex_e(void) {
	static hf_register_info hf[] = {
		/* H.248.1 E.1  Generic Package */
		{ &hf_h248_pkg_generic, { "Generic Package", "h248.pkg.generic", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_generic_cause_evt, { "Cause Event", "h248.pkg.generic.cause", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_generic_cause_gencause, { "Generic Cause", "h248.pkg.generic.cause.gencause", FT_UINT32, BASE_HEX, VALS(h248_pkg_generic_cause_gencause_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_generic_cause_failurecause, { "Generic Cause", "h248.pkg.generic.cause.failurecause", FT_STRING, BASE_NONE, NULL, 0, NULL, HFILL }},
		{&hf_h248_pkg_generic_sc_evt, {"Signal Completion2","h248.pkg.generic.sc",FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL}},
		{ &hf_h248_pkg_generic_sc_sig_id, { "Signal Identity", "h248.pkg.generic.sc.sig_id", FT_BYTES, BASE_NONE, NULL , 0, NULL, HFILL }},
		{ &hf_h248_pkg_generic_sc_meth, { "Termination Method", "h248.pkg.generic.sc.meth", FT_UINT32, BASE_DEC, VALS(h248_pkg_generic_sc_vals) , 0, NULL, HFILL }},
		{ &hf_h248_pkg_generic_sc_slid, { "Signal List ID", "h248.pkg.generic.sc.slid", FT_UINT32, BASE_DEC, NULL , 0, NULL, HFILL }},
		{ &hf_h248_pkg_generic_sc_rid, { "Request ID", "h248.pkg.generic.sc.rid", FT_UINT32, BASE_DEC,  NULL, 0, NULL, HFILL }},

		/* H.248.1.E 3 Tone Generator (tonegeg) */
		{ &hf_h248_pkg_tonegen, { "Tone Generator (tonegen)", "h248.pkg.tonegen", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonegen_sig_pt, { "Play Tone (pt)", "h248.pkg.tonegen.pg", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonegen_sig_pt_tl, { "Tone List ID (tl)", "h248.pkg.tonegen.pt.tl", FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonegen_sig_pt_ind, { "Inter-signal Duration (ind)", "h248.pkg.tonegem.pt.ind", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonegen_sig_pg_btd, { "Tone Direction (btd)", "h248.pkg.tonegen.pt.btd", FT_UINT32, BASE_HEX, VALS(h248_pkg_tonegen_pt_btd_param_vals), 0, NULL, HFILL }},

		/* H.248.1 E.4 Tone Detection (tonedet) */
		{ &hf_h248_pkg_tonedet, { "Tone Detection Package", "h248.pkg.tonedet", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonedet_evt_std, { "Start Tone", "h248.pkg.tonedet.std", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonedet_evt_etd, { "End Tone", "h248.pkg.tonedet.etd",  FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonedet_evt_ltd, { "Long Tone", "h248.pkg.tonedet.ltd", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonedet_evt_tl_param, {"Tone Detail", "h248.pkg.tonedet.evt.tl", FT_UINT16, BASE_DEC, VALS(h248_pkg_tonedet_tl_params_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonedet_evt_dur_param, {"Duration (ms)", "h248.pkg.tonedet.evt.dur", FT_UINT16, BASE_DEC, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tonedet_evt_tid_param, {"Tone ID", "h248.pkg.tonedet.evt.tid", FT_UINT16, BASE_DEC, VALS(h248_pkg_tonedet_tl_params_vals), 0, NULL, HFILL }},
		
		
		/* H.248.1 E.5 Basic DTMF Generator Package */
		{ &hf_h248_pkg_dg, { "Basic DTMF Generator Package (dg)", "h248.pkg.dg", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_pt, { "Play Tone", "h248.pkg.dg.pt", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d0, { "Digit 0", "h248.pkg.dg.d0", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d1, { "Digit 1", "h248.pkg.dg.d1", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d2, { "Digit 2", "h248.pkg.dg.d2", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d3, { "Digit 3", "h248.pkg.dg.d3", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d4, { "Digit 4", "h248.pkg.dg.d4", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d5, { "Digit 5", "h248.pkg.dg.d5", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d6, { "Digit 6", "h248.pkg.dg.d6", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d7, { "Digit 7", "h248.pkg.dg.d7", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d8, { "Digit 8", "h248.pkg.dg.d8", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_d9, { "Digit 9", "h248.pkg.dg.d9", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_da, { "Digit A", "h248.pkg.dg.da", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_db, { "Digit B", "h248.pkg.dg.db", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_dc, { "Digit C", "h248.pkg.dg.dc", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_dd, { "Digit D", "h248.pkg.dg.dd", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_ds, { "Digit *", "h248.pkg.dg.ds", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_do, { "Digit #", "h248.pkg.dg.do", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dg_sig_params, { "Event Parameters", "h248.pkg.dg.signal.direction", FT_UINT16, BASE_DEC, VALS(h248_pkg_dg_sig_btd_vals), 0, NULL, HFILL }},

		/* H.248.1 E.6 DTMF Detection Package */
		{ &hf_h248_pkg_dd_evt_ce_ds, { "Digit(s) Detected", "h248.pkg.dd.ce.ds", FT_STRING, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dd_evt_ce_meth, { "Method Used", "h248.pkg.dd.ce.meth", FT_UINT16, BASE_DEC, VALS(h248_pkg_dd_event_params_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_dd_evt_tl_param, {"Tone Detail", "h248.pkg.dd.evt.tl", FT_UINT16, BASE_DEC, VALS(h248_pkg_dd_event_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_dd_evt_dur_param, {"Duration (ms)", "h248.pkg.dd.evt.dur", FT_UINT16, BASE_DEC, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_dd_evt_tid_param, {"Tone ID", "h248.pkg.dd.evt.tid", FT_UINT16, BASE_DEC, VALS(h248_pkg_dd_event_vals), 0, NULL, HFILL }},
		

		/* H.248.1.E.7 Call Progress Tones Generator package */
		{ &hf_h248_pkg_cg, { "Call Progress Tones Generator", "h248.pkg.cg", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_pt, { "Play Tone (pt)", "h248.pkg.cg.pt", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_pt_tl, {"Tone List", "h248.pkg.cg.pt.tl", FT_UINT16, BASE_DEC_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }}, 
		{ &hf_h248_pkg_cg_sig_pt_ind, { "Inter-Signal Duration (ind)", "h248.pkg-cg.pt.ind", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_pt_btd, { "Tone Direction (btd)", "h248.pkg.cg.pt.btd", FT_UINT8, BASE_DEC, VALS(h248_pkg_cg_pt_btd_param_vals), 0, NULL, HFILL }}, 

		{ &hf_h248_pkg_cg_sig_dt, { "Dial Tone (dt)", "h248.pkg.cg.dt", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_rt, { "Ring Tone (rt)", "h248.pkg.cg.rt",FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_bt, { "Buzy Tone (bt)", "h248.pkg.cg.bt", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_ct, { "Congestion Tone (ct)", "h248.pkg.cg.ct", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_sit, { "Special Information Tone (sit)", "h248.pkg.cg.sit", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_wt, { "(Recording) Warning Tone (wt)", "h248.pkg.cg.wt", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_prt, { "Payphone Recognition Tone (prt)", "h248.pkg.cg.prt", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_cw, { "Call Waiting Tone (wt)", "h248.pkg.cg.cw", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_cg_sig_cr, { "Caller Waiting Tone (rt)", "h248.pkg.cg.cr", FT_UINT16, BASE_HEX, VALS(h248_pkg_cg_sig_cd_evt_vals), 0, NULL, HFILL }},

		/* H.248.1 E.8 Call Progress Tones Detection Package */
		{ &hf_h248_pkg_cd, { "Call Progress Tones Detection Package", "h248.pkg.cd", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		
		/* H.248.1 E.9 Analog Line Supervision Package */
		{ &hf_h248_pkg_al, { "Analog Line Supervision Package", "h248.pkg.al", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_sig_cadence, { "Cadence", "h248.pkg.al.sig.cadence", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_sig_cadence_on_off, { "On/Off Cadence", "h248.pkg.al.sig.cadence_on_off", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_sig_freq, { "Ring Frequency", "h248.pkg.al.sig.freq", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_onhook, { "onhook", "h248.pkg.al.onhook", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_offhook, { "offhook", "h248.pkg.al.offhook", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_flashhook, { "flashhook", "h248.pkg.al.flashhook", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_onhook_par_strict, { "strict", "h248.pkg.al.ev.onhook.strict", FT_UINT8, BASE_DEC, VALS(h248_pkg_al_evt_onhook_strict_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_onhook_par_init, { "init", "h248.pkg.al.ev.onhook.init", FT_BOOLEAN, BASE_NONE, TFS(&h248_pkg_al_evt_onhook_par_init_vals), 0x0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_offhook_par_strict, { "strict", "h248.pkg.al.ev.offhook.strict", FT_UINT8, BASE_DEC, VALS(h248_pkg_al_evt_onhook_strict_vals), 0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_offhook_par_init, { "init", "h248.pkg.al.ev.onhook.init", FT_BOOLEAN, BASE_NONE, TFS(&h248_pkg_al_evt_offhook_par_init_vals), 0x0, NULL, HFILL }},
		{ &hf_h248_pkg_al_evt_flashhook_par_mindur, { "Minimum duration in ms", "h248.pkg.al.ev.flashhook.mindur", FT_UINT32, BASE_DEC, NULL, 0, NULL, HFILL }},
		/* H.248.1 E.12 RTP package */
		{ &hf_h248_pkg_rtp, { "RTP package", "h248.pkg.rtp", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_rtp_stat_ps, { "Packets Sent", "h248.pkg.rtp.stat.ps", FT_UINT64, BASE_DEC, NULL, 0, NULL, HFILL }},
		/* H.248.1 E.13 TDM Circuit Package */
		{ &hf_h248_pkg_tdmc, { "TDM Circuit Package", "h248.pkg.tdmc", FT_BYTES, BASE_NONE, NULL, 0, NULL, HFILL }},
		{ &hf_h248_pkg_tdmc_ec, { "Echo Cancellation", "h248.pkg.tdmc.ec", FT_BOOLEAN, BASE_NONE, TFS(&h248_tdmc_ec_vals), 0x0, NULL, HFILL }},
		{ &hf_h248_pkg_tdmc_gain, { "Gain", "h248.pkg.tdmc.gain", FT_UINT32, BASE_HEX, NULL, 0, NULL, HFILL }},
	};

	static gint *ett[] = {
		/* generic 0x0001 */
		&ett_h248_pkg_generic_cause_evt,
		&ett_h248_pkg_generic,
		&ett_h248_pkg_generic_sc_evt,

		&ett_h248_pkg_root_params,

		&ett_h248_pkg_tonegen_params,

		/* tonegen 0x0003 */
		&ett_h248_pkg_tonedet,
		&ett_h248_pkg_tonedet_evt_std,
		&ett_h248_pkg_tonedet_evt_etd,
		&ett_h248_pkg_tonedet_evt_ltd,

        /* dg 0x0005 */
		&ett_h248_pkg_dg,
		&ett_h248_pkg_dg_sig_pt,
		&ett_h248_pkg_dg_sig_d0,
		&ett_h248_pkg_dg_sig_d1,
		&ett_h248_pkg_dg_sig_d2,
		&ett_h248_pkg_dg_sig_d3,
		&ett_h248_pkg_dg_sig_d4,
		&ett_h248_pkg_dg_sig_d5,
		&ett_h248_pkg_dg_sig_d6,
		&ett_h248_pkg_dg_sig_d7,
		&ett_h248_pkg_dg_sig_d8,
		&ett_h248_pkg_dg_sig_d9,
		&ett_h248_pkg_dg_sig_da,
		&ett_h248_pkg_dg_sig_db,
		&ett_h248_pkg_dg_sig_dc,
		&ett_h248_pkg_dg_sig_dd,
		&ett_h248_pkg_dg_sig_ds,
		&ett_h248_pkg_dg_sig_do,

		/* dd 0x0006 */
		&ett_h248_pkg_dd,
		&ett_h248_pkg_dd_evt_std,
		&ett_h248_pkg_dd_evt_ltd,
		&ett_h248_pkg_dd_evt_etd,
		&ett_h248_pkg_dd_evt_ce,
		
		/* 0x0007 Package cg */
		&ett_h248_pkg_cg_params,
		&ett_h248_pkg_cg_sig_pt,
		&ett_h248_pkg_tonegen_sig_pt,
		&ett_h248_pkg_cg_sig_dt,
		&ett_h248_pkg_cg_sig_rt,
		&ett_h248_pkg_cg_sig_bt,
		&ett_h248_pkg_cg_sig_ct,
		&ett_h248_pkg_cg_sig_sit,
		&ett_h248_pkg_cg_sig_wt,
		&ett_h248_pkg_cg_sig_prt,
		&ett_h248_pkg_cg_sig_cw,
		&ett_h248_pkg_cg_sig_cr,

		/* cd 0x0008 */
		&ett_h248_pkg_cd,
		
		/* al 0x0009 */
		&ett_h248_pkg_al,
		&ett_h248_pkg_al_sig_cadence,
		&ett_h248_pkg_al_sig_freq,
		&ett_h248_pkg_al_evt_flashhook,
		&ett_h248_pkg_al_evt_offhook,
		&ett_h248_pkg_al_evt_onhook,
		
		/* ct 0x000a */
		&ett_h248_pkg_ct,
		
		/* nt 0x000b */
		&ett_h248_pkg_nt,
		
		/* rtp 0x000c */
		&ett_h248_pkg_rtp,

		/* tdmc 0x000d */
		&ett_h248_pkg_tdmc
	};

	proto_h248_annex_E = proto_register_protocol(PNAME, PSNAME, PFNAME);

	proto_register_field_array(proto_h248_annex_E, hf, array_length(hf));

	proto_register_subtree_array(ett, array_length(ett));

	/* MERGE_PKG_LOW is use to allow other custom version of these 
	 *H248 package to take presidence if already loaded */
	h248_register_package(&h248_pkg_generic,MERGE_PKG_LOW);	/* 0x0001 */
	h248_register_package(&h248_pkg_root,MERGE_PKG_LOW);	/* 0x0002 */
	h248_register_package(&h248_pkg_tonegen,MERGE_PKG_LOW);	/* 0x0003 */
	h248_register_package(&h248_pkg_tonedet,MERGE_PKG_LOW);	/* 0x0004 */
	h248_register_package(&h248_pkg_dg,MERGE_PKG_LOW);		/* 0X0005 */
	h248_register_package(&h248_pkg_dd,MERGE_PKG_LOW);		/* 0x0006 */
	h248_register_package(&h248_pkg_cg,MERGE_PKG_LOW);		/* 0x0007 */
	h248_register_package(&h248_pkg_cd, MERGE_PKG_LOW);		/* 0x0008 */
	h248_register_package(&h248_pkg_al,MERGE_PKG_LOW);		/* 0x0009 */
	h248_register_package(&h248_pkg_ct, MERGE_PKG_LOW);		/* 0x000a */
	h248_register_package(&h248_pkg_nt, MERGE_PKG_LOW);		/* 0x000b */
	h248_register_package(&h248_pkg_rtp,MERGE_PKG_LOW);		/* 0x000c */
	h248_register_package(&h248_pkg_tdmc,MERGE_PKG_LOW);	/* 0x000d */
}