aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h460.c
blob: 94eebb2e2471c2731d6cd427eb1469904162a686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
/* Do not modify this file. Changes will be overwritten.                      */
/* Generated automatically by the ASN.1 to Wireshark dissector compiler       */
/* packet-h460.c                                                              */
/* asn2wrs.py -L -c ./h460.cnf -s ./packet-h460-template -D . -O ../.. NUMBER-PORTABILITY.asn CIRCUIT-STATUS-MAP.asn CALL-PRIORITY.asn QOS-MONITORING-REPORT.asn QOS-MONITORING-EXTENDED-VOIP-REPORT.asn CALL-PARTY-CATEGORY.asn MLPP.asn SIGNALLING-CHANNEL-SUSPEND-REDIRECT.asn SIGNALLING-TRAVERSAL.asn MEDIA-TRAVERSAL.asn MESSAGE-BROADCAST.asn */

/* packet-h460.c
 * Routines for H.460.x packet dissection
 * 2007  Tomas Kukosa
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "config.h"

#include <epan/packet.h>
#include <epan/oids.h>
#include <epan/asn1.h>

#include "packet-per.h"
#include "packet-h225.h"
#include "packet-h235.h"
#include "packet-h245.h"

#define PNAME  "H.460 Supplementary Services"
#define PSNAME "H.460"
#define PFNAME "h460"

void proto_register_h460(void);
void proto_reg_handoff_h460(void);

/* Initialize the protocol and registered fields */
static int proto_h460 = -1;

/* --- Module NUMBER-PORTABILITY --- --- ---                                  */

static int hf_h460_2_h460_2_NumberPortabilityInfo_PDU = -1;  /* NumberPortabilityInfo */
static int hf_h460_2_numberPortabilityRejectReason = -1;  /* NumberPortabilityRejectReason */
static int hf_h460_2_nUMBERPORTABILITYDATA = -1;  /* T_nUMBERPORTABILITYDATA */
static int hf_h460_2_addressTranslated = -1;      /* NULL */
static int hf_h460_2_portedAddress = -1;          /* PortabilityAddress */
static int hf_h460_2_routingAddress = -1;         /* PortabilityAddress */
static int hf_h460_2_regionalParams = -1;         /* RegionalParameters */
static int hf_h460_2_unspecified = -1;            /* NULL */
static int hf_h460_2_qorPortedNumber = -1;        /* NULL */
static int hf_h460_2_aliasAddress = -1;           /* AliasAddress */
static int hf_h460_2_typeOfAddress = -1;          /* NumberPortabilityTypeOfNumber */
static int hf_h460_2_publicTypeOfNumber = -1;     /* PublicTypeOfNumber */
static int hf_h460_2_privateTypeOfNumber = -1;    /* PrivateTypeOfNumber */
static int hf_h460_2_portabilityTypeOfNumber = -1;  /* PortabilityTypeOfNumber */
static int hf_h460_2_portedNumber = -1;           /* NULL */
static int hf_h460_2_routingNumber = -1;          /* NULL */
static int hf_h460_2_concatenatedNumber = -1;     /* NULL */
static int hf_h460_2_t35CountryCode = -1;         /* INTEGER_0_255 */
static int hf_h460_2_t35Extension = -1;           /* INTEGER_0_255 */
static int hf_h460_2_variantIdentifier = -1;      /* INTEGER_1_255 */
static int hf_h460_2_regionalData = -1;           /* OCTET_STRING */

/* --- Module CIRCUIT-STATUS-MAP --- --- ---                                  */

static int hf_h460_3_h460_3_CircuitStatus_PDU = -1;  /* CircuitStatus */
static int hf_h460_3_circuitStatusMap = -1;       /* SEQUENCE_OF_CircuitStatusMap */
static int hf_h460_3_circuitStatusMap_item = -1;  /* CircuitStatusMap */
static int hf_h460_3_statusType = -1;             /* CircuitStatusType */
static int hf_h460_3_baseCircuitID = -1;          /* CircuitIdentifier */
static int hf_h460_3_range = -1;                  /* INTEGER_0_4095 */
static int hf_h460_3_status = -1;                 /* OCTET_STRING */
static int hf_h460_3_serviceStatus = -1;          /* NULL */
static int hf_h460_3_busyStatus = -1;             /* NULL */

/* --- Module CALL-PRIORITY --- --- ---                                       */

static int hf_h460_4_h460_4_CallPriorityInfo_PDU = -1;  /* CallPriorityInfo */
static int hf_h460_4_h460_4_CountryInternationalNetworkCallOriginationIdentification_PDU = -1;  /* CountryInternationalNetworkCallOriginationIdentification */
static int hf_h460_4_priorityValue = -1;          /* T_priorityValue */
static int hf_h460_4_emergencyAuthorized = -1;    /* NULL */
static int hf_h460_4_emergencyPublic = -1;        /* NULL */
static int hf_h460_4_high = -1;                   /* NULL */
static int hf_h460_4_normal = -1;                 /* NULL */
static int hf_h460_4_priorityExtension = -1;      /* INTEGER_0_255 */
static int hf_h460_4_tokens = -1;                 /* SEQUENCE_OF_ClearToken */
static int hf_h460_4_tokens_item = -1;            /* ClearToken */
static int hf_h460_4_cryptoTokens = -1;           /* SEQUENCE_OF_CryptoToken */
static int hf_h460_4_cryptoTokens_item = -1;      /* CryptoToken */
static int hf_h460_4_rejectReason = -1;           /* T_rejectReason */
static int hf_h460_4_priorityUnavailable = -1;    /* NULL */
static int hf_h460_4_priorityUnauthorized = -1;   /* NULL */
static int hf_h460_4_priorityValueUnknown = -1;   /* NULL */
static int hf_h460_4_numberingPlan = -1;          /* T_numberingPlan */
static int hf_h460_4_x121 = -1;                   /* T_x121 */
static int hf_h460_4_x121CountryCode = -1;        /* X121CountryCode */
static int hf_h460_4_e164 = -1;                   /* T_e164 */
static int hf_h460_4_e164CountryCode = -1;        /* E164CountryCode */
static int hf_h460_4_identificationCode = -1;     /* T_identificationCode */

/* --- Modules QOS-MONITORING-REPORT QOS-MONITORING-EXTENDED-VOIP-REPORT --- --- --- */

static int hf_h460_9_h460_9_QosMonitoringReportData_PDU = -1;  /* QosMonitoringReportData */
static int hf_h460_9_h460_9_ExtendedRTPMetrics_PDU = -1;  /* ExtendedRTPMetrics */
static int hf_h460_9_extensionId = -1;            /* GenericIdentifier */
static int hf_h460_9_extensionContent = -1;       /* OCTET_STRING */
static int hf_h460_9_rtpAddress = -1;             /* TransportChannelInfo */
static int hf_h460_9_rtcpAddress = -1;            /* TransportChannelInfo */
static int hf_h460_9_sessionId = -1;              /* INTEGER_1_255 */
static int hf_h460_9_nonStandardData = -1;        /* NonStandardParameter */
static int hf_h460_9_mediaSenderMeasures = -1;    /* T_mediaSenderMeasures */
static int hf_h460_9_worstEstimatedEnd2EndDelay = -1;  /* EstimatedEnd2EndDelay */
static int hf_h460_9_meanEstimatedEnd2EndDelay = -1;  /* EstimatedEnd2EndDelay */
static int hf_h460_9_mediaReceiverMeasures = -1;  /* T_mediaReceiverMeasures */
static int hf_h460_9_cumulativeNumberOfPacketsLost = -1;  /* INTEGER_0_4294967295 */
static int hf_h460_9_packetLostRate = -1;         /* INTEGER_0_65535 */
static int hf_h460_9_worstJitter = -1;            /* CalculatedJitter */
static int hf_h460_9_estimatedThroughput = -1;    /* BandWidth */
static int hf_h460_9_fractionLostRate = -1;       /* INTEGER_0_65535 */
static int hf_h460_9_meanJitter = -1;             /* CalculatedJitter */
static int hf_h460_9_extensions = -1;             /* SEQUENCE_OF_Extension */
static int hf_h460_9_extensions_item = -1;        /* Extension */
static int hf_h460_9_callReferenceValue = -1;     /* CallReferenceValue */
static int hf_h460_9_conferenceID = -1;           /* ConferenceIdentifier */
static int hf_h460_9_callIdentifier = -1;         /* CallIdentifier */
static int hf_h460_9_mediaChannelsQoS = -1;       /* SEQUENCE_OF_RTCPMeasures */
static int hf_h460_9_mediaChannelsQoS_item = -1;  /* RTCPMeasures */
static int hf_h460_9_periodic = -1;               /* PeriodicQoSMonReport */
static int hf_h460_9_final = -1;                  /* FinalQosMonReport */
static int hf_h460_9_interGK = -1;                /* InterGKQosMonReport */
static int hf_h460_9_perCallInfo = -1;            /* SEQUENCE_OF_PerCallQoSReport */
static int hf_h460_9_perCallInfo_item = -1;       /* PerCallQoSReport */
static int hf_h460_9_mediaInfo = -1;              /* SEQUENCE_OF_RTCPMeasures */
static int hf_h460_9_mediaInfo_item = -1;         /* RTCPMeasures */
static int hf_h460_9_networkPacketLossRate = -1;  /* INTEGER_0_255 */
static int hf_h460_9_jitterBufferDiscardRate = -1;  /* INTEGER_0_255 */
static int hf_h460_9_burstMetrics = -1;           /* BurstMetrics */
static int hf_h460_9_rtcpRoundTripDelay = -1;     /* INTEGER_0_65535 */
static int hf_h460_9_endSystemDelay = -1;         /* INTEGER_0_65535 */
static int hf_h460_9_signalLevel = -1;            /* INTEGER_M127_10 */
static int hf_h460_9_noiseLevel = -1;             /* INTEGER_M127_0 */
static int hf_h460_9_residualEchoReturnLoss = -1;  /* INTEGER_0_127 */
static int hf_h460_9_rFactor = -1;                /* INTEGER_0_100 */
static int hf_h460_9_extRFactor = -1;             /* INTEGER_0_100 */
static int hf_h460_9_estimatedMOSLQ = -1;         /* INTEGER_10_50 */
static int hf_h460_9_estimatedMOSCQ = -1;         /* INTEGER_10_50 */
static int hf_h460_9_plcType = -1;                /* PLCtypes */
static int hf_h460_9_jitterBufferParms = -1;      /* JitterBufferParms */
static int hf_h460_9_gmin = -1;                   /* INTEGER_0_255 */
static int hf_h460_9_burstLossDensity = -1;       /* INTEGER_0_255 */
static int hf_h460_9_gapLossDensity = -1;         /* INTEGER_0_255 */
static int hf_h460_9_burstDuration = -1;          /* INTEGER_0_65535 */
static int hf_h460_9_gapDuration = -1;            /* INTEGER_0_65535 */
static int hf_h460_9_unspecified = -1;            /* NULL */
static int hf_h460_9_disabled = -1;               /* NULL */
static int hf_h460_9_enhanced = -1;               /* NULL */
static int hf_h460_9_standard = -1;               /* NULL */
static int hf_h460_9_jitterBufferType = -1;       /* JitterBufferTypes */
static int hf_h460_9_jitterBufferAdaptRate = -1;  /* INTEGER_0_15 */
static int hf_h460_9_jitterBufferNominalSize = -1;  /* INTEGER_0_65535 */
static int hf_h460_9_jitterBufferMaxSize = -1;    /* INTEGER_0_65535 */
static int hf_h460_9_jitterBufferAbsoluteMax = -1;  /* INTEGER_0_65535 */
static int hf_h460_9_unknown = -1;                /* NULL */
static int hf_h460_9_reserved = -1;               /* NULL */
static int hf_h460_9_nonadaptive = -1;            /* NULL */
static int hf_h460_9_adaptive = -1;               /* NULL */

/* --- Module CALL-PARTY-CATEGORY --- --- ---                                 */

static int hf_h460_10_h460_10_CallPartyCategoryInfo_PDU = -1;  /* CallPartyCategoryInfo */
static int hf_h460_10_callPartyCategory = -1;     /* CallPartyCategory */
static int hf_h460_10_originatingLineInfo = -1;   /* OriginatingLineInfo */

/* --- Module MLPP --- --- ---                                                */

static int hf_h460_14_h460_14_MLPPInfo_PDU = -1;  /* MLPPInfo */
static int hf_h460_14_precedence = -1;            /* MlppPrecedence */
static int hf_h460_14_mlppReason = -1;            /* MlppReason */
static int hf_h460_14_mlppNotification = -1;      /* MlppNotification */
static int hf_h460_14_alternateParty = -1;        /* AlternateParty */
static int hf_h460_14_releaseCall = -1;           /* ReleaseCall */
static int hf_h460_14_preemptionPending = -1;     /* NULL */
static int hf_h460_14_preemptionInProgress = -1;  /* NULL */
static int hf_h460_14_preemptionEnd = -1;         /* NULL */
static int hf_h460_14_preemptionComplete = -1;    /* NULL */
static int hf_h460_14_altID = -1;                 /* AliasAddress */
static int hf_h460_14_altTimer = -1;              /* INTEGER_0_255 */
static int hf_h460_14_preemptCallID = -1;         /* CallIdentifier */
static int hf_h460_14_releaseReason = -1;         /* MlppReason */
static int hf_h460_14_releaseDelay = -1;          /* INTEGER_0_255 */

/* --- Module SIGNALLING-CHANNEL-SUSPEND-REDIRECT --- --- ---                 */

static int hf_h460_15_h460_15_SignallingChannelData_PDU = -1;  /* SignallingChannelData */
static int hf_h460_15_signallingChannelData = -1;  /* T_signallingChannelData */
static int hf_h460_15_channelSuspendRequest = -1;  /* ChannelSuspendRequest */
static int hf_h460_15_channelSuspendResponse = -1;  /* ChannelSuspendResponse */
static int hf_h460_15_channelSuspendConfirm = -1;  /* ChannelSuspendConfirm */
static int hf_h460_15_channelSuspendCancel = -1;  /* ChannelSuspendCancel */
static int hf_h460_15_channelResumeRequest = -1;  /* ChannelResumeRequest */
static int hf_h460_15_channelResumeResponse = -1;  /* ChannelResumeResponse */
static int hf_h460_15_channelResumeAddress = -1;  /* SEQUENCE_OF_TransportAddress */
static int hf_h460_15_channelResumeAddress_item = -1;  /* TransportAddress */
static int hf_h460_15_immediateResume = -1;       /* BOOLEAN */
static int hf_h460_15_resetH245 = -1;             /* NULL */
static int hf_h460_15_okToSuspend = -1;           /* BOOLEAN */
static int hf_h460_15_randomNumber = -1;          /* INTEGER_0_4294967295 */

/* --- Module SIGNALLING-TRAVERSAL --- --- ---                                */

static int hf_h460_18_h460_18_IncomingCallIndication_PDU = -1;  /* IncomingCallIndication */
static int hf_h460_18_h460_18_LRQKeepAliveData_PDU = -1;  /* LRQKeepAliveData */
static int hf_h460_18_callSignallingAddress = -1;  /* TransportAddress */
static int hf_h460_18_callID = -1;                /* CallIdentifier */
static int hf_h460_18_lrqKeepAliveInterval = -1;  /* TimeToLive */

/* --- Module MEDIA-TRAVERSAL --- --- ---                                     */

static int hf_h460_19_h460_19_TraversalParameters_PDU = -1;  /* TraversalParameters */
static int hf_h460_19_multiplexedMediaChannel = -1;  /* TransportAddress */
static int hf_h460_19_multiplexedMediaControlChannel = -1;  /* TransportAddress */
static int hf_h460_19_multiplexID = -1;           /* INTEGER_0_4294967295 */
static int hf_h460_19_keepAliveChannel = -1;      /* TransportAddress */
static int hf_h460_19_keepAlivePayloadType = -1;  /* INTEGER_0_127 */
static int hf_h460_19_keepAliveInterval = -1;     /* TimeToLive */

/* --- Module MESSAGE-BROADCAST --- --- ---                                   */

static int hf_h460_21_h460_21_CapabilityAdvertisement_PDU = -1;  /* CapabilityAdvertisement */
static int hf_h460_21_receiveCapabilities = -1;   /* ReceiveCapabilities */
static int hf_h460_21_transmitCapabilities = -1;  /* SEQUENCE_SIZE_1_256_OF_TransmitCapabilities */
static int hf_h460_21_transmitCapabilities_item = -1;  /* TransmitCapabilities */
static int hf_h460_21_capabilities = -1;          /* SEQUENCE_SIZE_1_256_OF_Capability */
static int hf_h460_21_capabilities_item = -1;     /* Capability */
static int hf_h460_21_maxGroups = -1;             /* INTEGER_1_65535 */
static int hf_h460_21_groupIdentifer = -1;        /* GloballyUniqueID */
static int hf_h460_21_capability = -1;            /* Capability */
static int hf_h460_21_sourceAddress = -1;         /* UnicastAddress */

/* Initialize the subtree pointers */

/* --- Module NUMBER-PORTABILITY --- --- ---                                  */

static gint ett_h460_2_NumberPortabilityInfo = -1;
static gint ett_h460_2_T_nUMBERPORTABILITYDATA = -1;
static gint ett_h460_2_NumberPortabilityRejectReason = -1;
static gint ett_h460_2_PortabilityAddress = -1;
static gint ett_h460_2_NumberPortabilityTypeOfNumber = -1;
static gint ett_h460_2_PortabilityTypeOfNumber = -1;
static gint ett_h460_2_RegionalParameters = -1;

/* --- Module CIRCUIT-STATUS-MAP --- --- ---                                  */

static gint ett_h460_3_CircuitStatus = -1;
static gint ett_h460_3_SEQUENCE_OF_CircuitStatusMap = -1;
static gint ett_h460_3_CircuitStatusMap = -1;
static gint ett_h460_3_CircuitStatusType = -1;

/* --- Module CALL-PRIORITY --- --- ---                                       */

static gint ett_h460_4_CallPriorityInfo = -1;
static gint ett_h460_4_T_priorityValue = -1;
static gint ett_h460_4_SEQUENCE_OF_ClearToken = -1;
static gint ett_h460_4_SEQUENCE_OF_CryptoToken = -1;
static gint ett_h460_4_T_rejectReason = -1;
static gint ett_h460_4_CountryInternationalNetworkCallOriginationIdentification = -1;
static gint ett_h460_4_T_numberingPlan = -1;
static gint ett_h460_4_T_x121 = -1;
static gint ett_h460_4_T_e164 = -1;

/* --- Modules QOS-MONITORING-REPORT QOS-MONITORING-EXTENDED-VOIP-REPORT --- --- --- */

static gint ett_h460_9_Extension = -1;
static gint ett_h460_9_RTCPMeasures = -1;
static gint ett_h460_9_T_mediaSenderMeasures = -1;
static gint ett_h460_9_T_mediaReceiverMeasures = -1;
static gint ett_h460_9_SEQUENCE_OF_Extension = -1;
static gint ett_h460_9_PerCallQoSReport = -1;
static gint ett_h460_9_SEQUENCE_OF_RTCPMeasures = -1;
static gint ett_h460_9_QosMonitoringReportData = -1;
static gint ett_h460_9_PeriodicQoSMonReport = -1;
static gint ett_h460_9_SEQUENCE_OF_PerCallQoSReport = -1;
static gint ett_h460_9_FinalQosMonReport = -1;
static gint ett_h460_9_InterGKQosMonReport = -1;
static gint ett_h460_9_ExtendedRTPMetrics = -1;
static gint ett_h460_9_BurstMetrics = -1;
static gint ett_h460_9_PLCtypes = -1;
static gint ett_h460_9_JitterBufferParms = -1;
static gint ett_h460_9_JitterBufferTypes = -1;

/* --- Module CALL-PARTY-CATEGORY --- --- ---                                 */

static gint ett_h460_10_CallPartyCategoryInfo = -1;

/* --- Module MLPP --- --- ---                                                */

static gint ett_h460_14_MLPPInfo = -1;
static gint ett_h460_14_MlppNotification = -1;
static gint ett_h460_14_AlternateParty = -1;
static gint ett_h460_14_ReleaseCall = -1;

/* --- Module SIGNALLING-CHANNEL-SUSPEND-REDIRECT --- --- ---                 */

static gint ett_h460_15_SignallingChannelData = -1;
static gint ett_h460_15_T_signallingChannelData = -1;
static gint ett_h460_15_ChannelSuspendRequest = -1;
static gint ett_h460_15_SEQUENCE_OF_TransportAddress = -1;
static gint ett_h460_15_ChannelSuspendResponse = -1;
static gint ett_h460_15_ChannelSuspendConfirm = -1;
static gint ett_h460_15_ChannelSuspendCancel = -1;
static gint ett_h460_15_ChannelResumeRequest = -1;
static gint ett_h460_15_ChannelResumeResponse = -1;

/* --- Module SIGNALLING-TRAVERSAL --- --- ---                                */

static gint ett_h460_18_IncomingCallIndication = -1;
static gint ett_h460_18_LRQKeepAliveData = -1;

/* --- Module MEDIA-TRAVERSAL --- --- ---                                     */

static gint ett_h460_19_TraversalParameters = -1;

/* --- Module MESSAGE-BROADCAST --- --- ---                                   */

static gint ett_h460_21_CapabilityAdvertisement = -1;
static gint ett_h460_21_SEQUENCE_SIZE_1_256_OF_TransmitCapabilities = -1;
static gint ett_h460_21_ReceiveCapabilities = -1;
static gint ett_h460_21_SEQUENCE_SIZE_1_256_OF_Capability = -1;
static gint ett_h460_21_TransmitCapabilities = -1;

/* Subdissectors */
static dissector_handle_t q931_ie_handle = NULL;
static dissector_handle_t h225_ras_handle = NULL;


/* --- Module NUMBER-PORTABILITY --- --- ---                                  */



static int
dissect_h460_2_NULL(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_null(tvb, offset, actx, tree, hf_index);

  return offset;
}


static const value_string h460_2_NumberPortabilityRejectReason_vals[] = {
  {   0, "unspecified" },
  {   1, "qorPortedNumber" },
  { 0, NULL }
};

static const per_choice_t h460_2_NumberPortabilityRejectReason_choice[] = {
  {   0, &hf_h460_2_unspecified  , ASN1_EXTENSION_ROOT    , dissect_h460_2_NULL },
  {   1, &hf_h460_2_qorPortedNumber, ASN1_EXTENSION_ROOT    , dissect_h460_2_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_2_NumberPortabilityRejectReason(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_2_NumberPortabilityRejectReason, h460_2_NumberPortabilityRejectReason_choice,
                                 NULL);

  return offset;
}


static const value_string h460_2_PortabilityTypeOfNumber_vals[] = {
  {   0, "portedNumber" },
  {   1, "routingNumber" },
  {   2, "concatenatedNumber" },
  { 0, NULL }
};

static const per_choice_t h460_2_PortabilityTypeOfNumber_choice[] = {
  {   0, &hf_h460_2_portedNumber , ASN1_EXTENSION_ROOT    , dissect_h460_2_NULL },
  {   1, &hf_h460_2_routingNumber, ASN1_EXTENSION_ROOT    , dissect_h460_2_NULL },
  {   2, &hf_h460_2_concatenatedNumber, ASN1_EXTENSION_ROOT    , dissect_h460_2_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_2_PortabilityTypeOfNumber(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_2_PortabilityTypeOfNumber, h460_2_PortabilityTypeOfNumber_choice,
                                 NULL);

  return offset;
}


static const value_string h460_2_NumberPortabilityTypeOfNumber_vals[] = {
  {   0, "publicTypeOfNumber" },
  {   1, "privateTypeOfNumber" },
  {   2, "portabilityTypeOfNumber" },
  { 0, NULL }
};

static const per_choice_t h460_2_NumberPortabilityTypeOfNumber_choice[] = {
  {   0, &hf_h460_2_publicTypeOfNumber, ASN1_EXTENSION_ROOT    , dissect_h225_PublicTypeOfNumber },
  {   1, &hf_h460_2_privateTypeOfNumber, ASN1_EXTENSION_ROOT    , dissect_h225_PrivateTypeOfNumber },
  {   2, &hf_h460_2_portabilityTypeOfNumber, ASN1_EXTENSION_ROOT    , dissect_h460_2_PortabilityTypeOfNumber },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_2_NumberPortabilityTypeOfNumber(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_2_NumberPortabilityTypeOfNumber, h460_2_NumberPortabilityTypeOfNumber_choice,
                                 NULL);

  return offset;
}


static const per_sequence_t h460_2_PortabilityAddress_sequence[] = {
  { &hf_h460_2_aliasAddress , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_AliasAddress },
  { &hf_h460_2_typeOfAddress, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_2_NumberPortabilityTypeOfNumber },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_2_PortabilityAddress(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_2_PortabilityAddress, h460_2_PortabilityAddress_sequence);

  return offset;
}



static int
dissect_h460_2_INTEGER_0_255(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 255U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_2_INTEGER_1_255(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            1U, 255U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_2_OCTET_STRING(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_octet_string(tvb, offset, actx, tree, hf_index,
                                       NO_BOUND, NO_BOUND, FALSE, NULL);

  return offset;
}


static const per_sequence_t h460_2_RegionalParameters_sequence[] = {
  { &hf_h460_2_t35CountryCode, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_2_INTEGER_0_255 },
  { &hf_h460_2_t35Extension , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_2_INTEGER_0_255 },
  { &hf_h460_2_variantIdentifier, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_2_INTEGER_1_255 },
  { &hf_h460_2_regionalData , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_2_OCTET_STRING },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_2_RegionalParameters(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_2_RegionalParameters, h460_2_RegionalParameters_sequence);

  return offset;
}


static const per_sequence_t h460_2_T_nUMBERPORTABILITYDATA_sequence[] = {
  { &hf_h460_2_addressTranslated, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_2_NULL },
  { &hf_h460_2_portedAddress, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_2_PortabilityAddress },
  { &hf_h460_2_routingAddress, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_2_PortabilityAddress },
  { &hf_h460_2_regionalParams, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_2_RegionalParameters },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_2_T_nUMBERPORTABILITYDATA(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_2_T_nUMBERPORTABILITYDATA, h460_2_T_nUMBERPORTABILITYDATA_sequence);

  return offset;
}


static const value_string h460_2_NumberPortabilityInfo_vals[] = {
  {   0, "numberPortabilityRejectReason" },
  {   1, "nUMBERPORTABILITYDATA" },
  { 0, NULL }
};

static const per_choice_t h460_2_NumberPortabilityInfo_choice[] = {
  {   0, &hf_h460_2_numberPortabilityRejectReason, ASN1_EXTENSION_ROOT    , dissect_h460_2_NumberPortabilityRejectReason },
  {   1, &hf_h460_2_nUMBERPORTABILITYDATA, ASN1_EXTENSION_ROOT    , dissect_h460_2_T_nUMBERPORTABILITYDATA },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_2_NumberPortabilityInfo(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_2_NumberPortabilityInfo, h460_2_NumberPortabilityInfo_choice,
                                 NULL);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_2_NumberPortabilityInfo_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_2_NumberPortabilityInfo(tvb, offset, &asn1_ctx, tree, hf_h460_2_h460_2_NumberPortabilityInfo_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module CIRCUIT-STATUS-MAP --- --- ---                                  */



static int
dissect_h460_3_NULL(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_null(tvb, offset, actx, tree, hf_index);

  return offset;
}


static const value_string h460_3_CircuitStatusType_vals[] = {
  {   0, "serviceStatus" },
  {   1, "busyStatus" },
  { 0, NULL }
};

static const per_choice_t h460_3_CircuitStatusType_choice[] = {
  {   0, &hf_h460_3_serviceStatus, ASN1_EXTENSION_ROOT    , dissect_h460_3_NULL },
  {   1, &hf_h460_3_busyStatus   , ASN1_EXTENSION_ROOT    , dissect_h460_3_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_3_CircuitStatusType(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_3_CircuitStatusType, h460_3_CircuitStatusType_choice,
                                 NULL);

  return offset;
}



static int
dissect_h460_3_INTEGER_0_4095(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 4095U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_3_OCTET_STRING(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_octet_string(tvb, offset, actx, tree, hf_index,
                                       NO_BOUND, NO_BOUND, FALSE, NULL);

  return offset;
}


static const per_sequence_t h460_3_CircuitStatusMap_sequence[] = {
  { &hf_h460_3_statusType   , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_3_CircuitStatusType },
  { &hf_h460_3_baseCircuitID, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_CircuitIdentifier },
  { &hf_h460_3_range        , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_3_INTEGER_0_4095 },
  { &hf_h460_3_status       , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_3_OCTET_STRING },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_3_CircuitStatusMap(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_3_CircuitStatusMap, h460_3_CircuitStatusMap_sequence);

  return offset;
}


static const per_sequence_t h460_3_SEQUENCE_OF_CircuitStatusMap_sequence_of[1] = {
  { &hf_h460_3_circuitStatusMap_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h460_3_CircuitStatusMap },
};

static int
dissect_h460_3_SEQUENCE_OF_CircuitStatusMap(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence_of(tvb, offset, actx, tree, hf_index,
                                      ett_h460_3_SEQUENCE_OF_CircuitStatusMap, h460_3_SEQUENCE_OF_CircuitStatusMap_sequence_of);

  return offset;
}


static const per_sequence_t h460_3_CircuitStatus_sequence[] = {
  { &hf_h460_3_circuitStatusMap, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_3_SEQUENCE_OF_CircuitStatusMap },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_3_CircuitStatus(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_3_CircuitStatus, h460_3_CircuitStatus_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_3_CircuitStatus_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_3_CircuitStatus(tvb, offset, &asn1_ctx, tree, hf_h460_3_h460_3_CircuitStatus_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module CALL-PRIORITY --- --- ---                                       */



static int
dissect_h460_4_NULL(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_null(tvb, offset, actx, tree, hf_index);

  return offset;
}


static const value_string h460_4_T_priorityValue_vals[] = {
  {   0, "emergencyAuthorized" },
  {   1, "emergencyPublic" },
  {   2, "high" },
  {   3, "normal" },
  { 0, NULL }
};

static const per_choice_t h460_4_T_priorityValue_choice[] = {
  {   0, &hf_h460_4_emergencyAuthorized, ASN1_EXTENSION_ROOT    , dissect_h460_4_NULL },
  {   1, &hf_h460_4_emergencyPublic, ASN1_EXTENSION_ROOT    , dissect_h460_4_NULL },
  {   2, &hf_h460_4_high         , ASN1_EXTENSION_ROOT    , dissect_h460_4_NULL },
  {   3, &hf_h460_4_normal       , ASN1_EXTENSION_ROOT    , dissect_h460_4_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_4_T_priorityValue(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_4_T_priorityValue, h460_4_T_priorityValue_choice,
                                 NULL);

  return offset;
}



static int
dissect_h460_4_INTEGER_0_255(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 255U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_4_SEQUENCE_OF_ClearToken_sequence_of[1] = {
  { &hf_h460_4_tokens_item  , ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h235_ClearToken },
};

static int
dissect_h460_4_SEQUENCE_OF_ClearToken(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence_of(tvb, offset, actx, tree, hf_index,
                                      ett_h460_4_SEQUENCE_OF_ClearToken, h460_4_SEQUENCE_OF_ClearToken_sequence_of);

  return offset;
}


static const per_sequence_t h460_4_SEQUENCE_OF_CryptoToken_sequence_of[1] = {
  { &hf_h460_4_cryptoTokens_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h235_CryptoToken },
};

static int
dissect_h460_4_SEQUENCE_OF_CryptoToken(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence_of(tvb, offset, actx, tree, hf_index,
                                      ett_h460_4_SEQUENCE_OF_CryptoToken, h460_4_SEQUENCE_OF_CryptoToken_sequence_of);

  return offset;
}


static const value_string h460_4_T_rejectReason_vals[] = {
  {   0, "priorityUnavailable" },
  {   1, "priorityUnauthorized" },
  {   2, "priorityValueUnknown" },
  { 0, NULL }
};

static const per_choice_t h460_4_T_rejectReason_choice[] = {
  {   0, &hf_h460_4_priorityUnavailable, ASN1_EXTENSION_ROOT    , dissect_h460_4_NULL },
  {   1, &hf_h460_4_priorityUnauthorized, ASN1_EXTENSION_ROOT    , dissect_h460_4_NULL },
  {   2, &hf_h460_4_priorityValueUnknown, ASN1_EXTENSION_ROOT    , dissect_h460_4_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_4_T_rejectReason(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_4_T_rejectReason, h460_4_T_rejectReason_choice,
                                 NULL);

  return offset;
}


static const per_sequence_t h460_4_CallPriorityInfo_sequence[] = {
  { &hf_h460_4_priorityValue, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_4_T_priorityValue },
  { &hf_h460_4_priorityExtension, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_4_INTEGER_0_255 },
  { &hf_h460_4_tokens       , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_4_SEQUENCE_OF_ClearToken },
  { &hf_h460_4_cryptoTokens , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_4_SEQUENCE_OF_CryptoToken },
  { &hf_h460_4_rejectReason , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_4_T_rejectReason },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_4_CallPriorityInfo(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_4_CallPriorityInfo, h460_4_CallPriorityInfo_sequence);

  return offset;
}



static int
dissect_h460_4_X121CountryCode(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_restricted_character_string(tvb, offset, actx, tree, hf_index,
                                                      3, 3, FALSE, "0123456789", 10,
                                                      NULL);

  return offset;
}


static const per_sequence_t h460_4_T_x121_sequence[] = {
  { &hf_h460_4_x121CountryCode, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_4_X121CountryCode },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_4_T_x121(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_4_T_x121, h460_4_T_x121_sequence);

  return offset;
}



static int
dissect_h460_4_E164CountryCode(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_restricted_character_string(tvb, offset, actx, tree, hf_index,
                                                      3, 3, FALSE, "0123456789", 10,
                                                      NULL);

  return offset;
}



static int
dissect_h460_4_T_identificationCode(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_restricted_character_string(tvb, offset, actx, tree, hf_index,
                                                      1, 4, FALSE, "0123456789", 10,
                                                      NULL);

  return offset;
}


static const per_sequence_t h460_4_T_e164_sequence[] = {
  { &hf_h460_4_e164CountryCode, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_4_E164CountryCode },
  { &hf_h460_4_identificationCode, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_4_T_identificationCode },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_4_T_e164(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_4_T_e164, h460_4_T_e164_sequence);

  return offset;
}


static const value_string h460_4_T_numberingPlan_vals[] = {
  {   0, "x121" },
  {   1, "e164" },
  { 0, NULL }
};

static const per_choice_t h460_4_T_numberingPlan_choice[] = {
  {   0, &hf_h460_4_x121         , ASN1_EXTENSION_ROOT    , dissect_h460_4_T_x121 },
  {   1, &hf_h460_4_e164         , ASN1_EXTENSION_ROOT    , dissect_h460_4_T_e164 },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_4_T_numberingPlan(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_4_T_numberingPlan, h460_4_T_numberingPlan_choice,
                                 NULL);

  return offset;
}


static const per_sequence_t h460_4_CountryInternationalNetworkCallOriginationIdentification_sequence[] = {
  { &hf_h460_4_numberingPlan, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_4_T_numberingPlan },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_4_CountryInternationalNetworkCallOriginationIdentification(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_4_CountryInternationalNetworkCallOriginationIdentification, h460_4_CountryInternationalNetworkCallOriginationIdentification_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_4_CallPriorityInfo_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_4_CallPriorityInfo(tvb, offset, &asn1_ctx, tree, hf_h460_4_h460_4_CallPriorityInfo_PDU);
  offset += 7; offset >>= 3;
  return offset;
}
static int dissect_h460_4_CountryInternationalNetworkCallOriginationIdentification_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_4_CountryInternationalNetworkCallOriginationIdentification(tvb, offset, &asn1_ctx, tree, hf_h460_4_h460_4_CountryInternationalNetworkCallOriginationIdentification_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Modules QOS-MONITORING-REPORT QOS-MONITORING-EXTENDED-VOIP-REPORT --- --- --- */



static int
dissect_h460_9_EstimatedEnd2EndDelay(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 4294967295U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_CalculatedJitter(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 4294967295U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_OCTET_STRING(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_octet_string(tvb, offset, actx, tree, hf_index,
                                       NO_BOUND, NO_BOUND, FALSE, NULL);

  return offset;
}


static const per_sequence_t h460_9_Extension_sequence[] = {
  { &hf_h460_9_extensionId  , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_GenericIdentifier },
  { &hf_h460_9_extensionContent, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_OCTET_STRING },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_Extension(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_Extension, h460_9_Extension_sequence);

  return offset;
}



static int
dissect_h460_9_INTEGER_1_255(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            1U, 255U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_9_T_mediaSenderMeasures_sequence[] = {
  { &hf_h460_9_worstEstimatedEnd2EndDelay, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_EstimatedEnd2EndDelay },
  { &hf_h460_9_meanEstimatedEnd2EndDelay, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_EstimatedEnd2EndDelay },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_T_mediaSenderMeasures(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_T_mediaSenderMeasures, h460_9_T_mediaSenderMeasures_sequence);

  return offset;
}



static int
dissect_h460_9_INTEGER_0_4294967295(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 4294967295U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_INTEGER_0_65535(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 65535U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_9_T_mediaReceiverMeasures_sequence[] = {
  { &hf_h460_9_cumulativeNumberOfPacketsLost, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_4294967295 },
  { &hf_h460_9_packetLostRate, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { &hf_h460_9_worstJitter  , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_CalculatedJitter },
  { &hf_h460_9_estimatedThroughput, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h225_BandWidth },
  { &hf_h460_9_fractionLostRate, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { &hf_h460_9_meanJitter   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_CalculatedJitter },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_T_mediaReceiverMeasures(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_T_mediaReceiverMeasures, h460_9_T_mediaReceiverMeasures_sequence);

  return offset;
}


static const per_sequence_t h460_9_SEQUENCE_OF_Extension_sequence_of[1] = {
  { &hf_h460_9_extensions_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h460_9_Extension },
};

static int
dissect_h460_9_SEQUENCE_OF_Extension(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence_of(tvb, offset, actx, tree, hf_index,
                                      ett_h460_9_SEQUENCE_OF_Extension, h460_9_SEQUENCE_OF_Extension_sequence_of);

  return offset;
}


static const per_sequence_t h460_9_RTCPMeasures_sequence[] = {
  { &hf_h460_9_rtpAddress   , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_TransportChannelInfo },
  { &hf_h460_9_rtcpAddress  , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_TransportChannelInfo },
  { &hf_h460_9_sessionId    , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_9_INTEGER_1_255 },
  { &hf_h460_9_nonStandardData, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h225_NonStandardParameter },
  { &hf_h460_9_mediaSenderMeasures, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_T_mediaSenderMeasures },
  { &hf_h460_9_mediaReceiverMeasures, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_T_mediaReceiverMeasures },
  { &hf_h460_9_extensions   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_SEQUENCE_OF_Extension },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_RTCPMeasures(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_RTCPMeasures, h460_9_RTCPMeasures_sequence);

  return offset;
}


static const per_sequence_t h460_9_SEQUENCE_OF_RTCPMeasures_sequence_of[1] = {
  { &hf_h460_9_mediaChannelsQoS_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h460_9_RTCPMeasures },
};

static int
dissect_h460_9_SEQUENCE_OF_RTCPMeasures(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence_of(tvb, offset, actx, tree, hf_index,
                                      ett_h460_9_SEQUENCE_OF_RTCPMeasures, h460_9_SEQUENCE_OF_RTCPMeasures_sequence_of);

  return offset;
}


static const per_sequence_t h460_9_PerCallQoSReport_sequence[] = {
  { &hf_h460_9_nonStandardData, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h225_NonStandardParameter },
  { &hf_h460_9_callReferenceValue, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_CallReferenceValue },
  { &hf_h460_9_conferenceID , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_ConferenceIdentifier },
  { &hf_h460_9_callIdentifier, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_CallIdentifier },
  { &hf_h460_9_mediaChannelsQoS, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_SEQUENCE_OF_RTCPMeasures },
  { &hf_h460_9_extensions   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_SEQUENCE_OF_Extension },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_PerCallQoSReport(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_PerCallQoSReport, h460_9_PerCallQoSReport_sequence);

  return offset;
}


static const per_sequence_t h460_9_SEQUENCE_OF_PerCallQoSReport_sequence_of[1] = {
  { &hf_h460_9_perCallInfo_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h460_9_PerCallQoSReport },
};

static int
dissect_h460_9_SEQUENCE_OF_PerCallQoSReport(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence_of(tvb, offset, actx, tree, hf_index,
                                      ett_h460_9_SEQUENCE_OF_PerCallQoSReport, h460_9_SEQUENCE_OF_PerCallQoSReport_sequence_of);

  return offset;
}


static const per_sequence_t h460_9_PeriodicQoSMonReport_sequence[] = {
  { &hf_h460_9_perCallInfo  , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_9_SEQUENCE_OF_PerCallQoSReport },
  { &hf_h460_9_extensions   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_SEQUENCE_OF_Extension },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_PeriodicQoSMonReport(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_PeriodicQoSMonReport, h460_9_PeriodicQoSMonReport_sequence);

  return offset;
}


static const per_sequence_t h460_9_FinalQosMonReport_sequence[] = {
  { &hf_h460_9_mediaInfo    , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_9_SEQUENCE_OF_RTCPMeasures },
  { &hf_h460_9_nonStandardData, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h225_NonStandardParameter },
  { &hf_h460_9_extensions   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_SEQUENCE_OF_Extension },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_FinalQosMonReport(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_FinalQosMonReport, h460_9_FinalQosMonReport_sequence);

  return offset;
}


static const per_sequence_t h460_9_InterGKQosMonReport_sequence[] = {
  { &hf_h460_9_mediaInfo    , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_9_SEQUENCE_OF_RTCPMeasures },
  { &hf_h460_9_nonStandardData, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h225_NonStandardParameter },
  { &hf_h460_9_extensions   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_SEQUENCE_OF_Extension },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_InterGKQosMonReport(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_InterGKQosMonReport, h460_9_InterGKQosMonReport_sequence);

  return offset;
}


static const value_string h460_9_QosMonitoringReportData_vals[] = {
  {   0, "periodic" },
  {   1, "final" },
  {   2, "interGK" },
  { 0, NULL }
};

static const per_choice_t h460_9_QosMonitoringReportData_choice[] = {
  {   0, &hf_h460_9_periodic     , ASN1_EXTENSION_ROOT    , dissect_h460_9_PeriodicQoSMonReport },
  {   1, &hf_h460_9_final        , ASN1_EXTENSION_ROOT    , dissect_h460_9_FinalQosMonReport },
  {   2, &hf_h460_9_interGK      , ASN1_EXTENSION_ROOT    , dissect_h460_9_InterGKQosMonReport },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_9_QosMonitoringReportData(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_9_QosMonitoringReportData, h460_9_QosMonitoringReportData_choice,
                                 NULL);

  return offset;
}



static int
dissect_h460_9_INTEGER_0_255(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 255U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_9_BurstMetrics_sequence[] = {
  { &hf_h460_9_gmin         , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_255 },
  { &hf_h460_9_burstLossDensity, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_255 },
  { &hf_h460_9_gapLossDensity, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_255 },
  { &hf_h460_9_burstDuration, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { &hf_h460_9_gapDuration  , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_BurstMetrics(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_BurstMetrics, h460_9_BurstMetrics_sequence);

  return offset;
}



static int
dissect_h460_9_INTEGER_M127_10(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            -127, 10U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_INTEGER_M127_0(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            -127, 0U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_INTEGER_0_127(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 127U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_INTEGER_0_100(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 100U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_INTEGER_10_50(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            10U, 50U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_9_NULL(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_null(tvb, offset, actx, tree, hf_index);

  return offset;
}


static const value_string h460_9_PLCtypes_vals[] = {
  {   0, "unspecified" },
  {   1, "disabled" },
  {   2, "enhanced" },
  {   3, "standard" },
  { 0, NULL }
};

static const per_choice_t h460_9_PLCtypes_choice[] = {
  {   0, &hf_h460_9_unspecified  , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  {   1, &hf_h460_9_disabled     , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  {   2, &hf_h460_9_enhanced     , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  {   3, &hf_h460_9_standard     , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_9_PLCtypes(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_9_PLCtypes, h460_9_PLCtypes_choice,
                                 NULL);

  return offset;
}


static const value_string h460_9_JitterBufferTypes_vals[] = {
  {   0, "unknown" },
  {   1, "reserved" },
  {   2, "nonadaptive" },
  {   3, "adaptive" },
  { 0, NULL }
};

static const per_choice_t h460_9_JitterBufferTypes_choice[] = {
  {   0, &hf_h460_9_unknown      , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  {   1, &hf_h460_9_reserved     , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  {   2, &hf_h460_9_nonadaptive  , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  {   3, &hf_h460_9_adaptive     , ASN1_EXTENSION_ROOT    , dissect_h460_9_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_9_JitterBufferTypes(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_9_JitterBufferTypes, h460_9_JitterBufferTypes_choice,
                                 NULL);

  return offset;
}



static int
dissect_h460_9_INTEGER_0_15(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 15U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_9_JitterBufferParms_sequence[] = {
  { &hf_h460_9_jitterBufferType, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_JitterBufferTypes },
  { &hf_h460_9_jitterBufferAdaptRate, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_15 },
  { &hf_h460_9_jitterBufferNominalSize, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { &hf_h460_9_jitterBufferMaxSize, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { &hf_h460_9_jitterBufferAbsoluteMax, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_JitterBufferParms(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_JitterBufferParms, h460_9_JitterBufferParms_sequence);

  return offset;
}


static const per_sequence_t h460_9_ExtendedRTPMetrics_sequence[] = {
  { &hf_h460_9_networkPacketLossRate, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_255 },
  { &hf_h460_9_jitterBufferDiscardRate, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_255 },
  { &hf_h460_9_burstMetrics , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_BurstMetrics },
  { &hf_h460_9_rtcpRoundTripDelay, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { &hf_h460_9_endSystemDelay, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_65535 },
  { &hf_h460_9_signalLevel  , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_M127_10 },
  { &hf_h460_9_noiseLevel   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_M127_0 },
  { &hf_h460_9_residualEchoReturnLoss, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_127 },
  { &hf_h460_9_rFactor      , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_100 },
  { &hf_h460_9_extRFactor   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_0_100 },
  { &hf_h460_9_estimatedMOSLQ, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_10_50 },
  { &hf_h460_9_estimatedMOSCQ, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_INTEGER_10_50 },
  { &hf_h460_9_plcType      , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_PLCtypes },
  { &hf_h460_9_jitterBufferParms, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_9_JitterBufferParms },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_9_ExtendedRTPMetrics(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_9_ExtendedRTPMetrics, h460_9_ExtendedRTPMetrics_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_9_QosMonitoringReportData_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_9_QosMonitoringReportData(tvb, offset, &asn1_ctx, tree, hf_h460_9_h460_9_QosMonitoringReportData_PDU);
  offset += 7; offset >>= 3;
  return offset;
}
static int dissect_h460_9_ExtendedRTPMetrics_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_9_ExtendedRTPMetrics(tvb, offset, &asn1_ctx, tree, hf_h460_9_h460_9_ExtendedRTPMetrics_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module CALL-PARTY-CATEGORY --- --- ---                                 */



static int
dissect_h460_10_CallPartyCategory(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 255U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_10_OriginatingLineInfo(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 255U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_10_CallPartyCategoryInfo_sequence[] = {
  { &hf_h460_10_callPartyCategory, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_10_CallPartyCategory },
  { &hf_h460_10_originatingLineInfo, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_10_OriginatingLineInfo },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_10_CallPartyCategoryInfo(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_10_CallPartyCategoryInfo, h460_10_CallPartyCategoryInfo_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_10_CallPartyCategoryInfo_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_10_CallPartyCategoryInfo(tvb, offset, &asn1_ctx, tree, hf_h460_10_h460_10_CallPartyCategoryInfo_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module MLPP --- --- ---                                                */


static const value_string h460_14_MlppPrecedence_vals[] = {
  {   0, "flashOveride" },
  {   1, "flash" },
  {   2, "immediate" },
  {   3, "priority" },
  {   4, "routine" },
  { 0, NULL }
};


static int
dissect_h460_14_MlppPrecedence(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_enumerated(tvb, offset, actx, tree, hf_index,
                                     5, NULL, TRUE, 0, NULL);

  return offset;
}


static const value_string h460_14_MlppReason_vals[] = {
  {   8, "preemptionNoReservation" },
  {   9, "preemptionReservation" },
  {  46, "callBlocked" },
  { 0, NULL }
};

static guint32 h460_14_MlppReason_value_map[3+0] = {8, 9, 46};

static int
dissect_h460_14_MlppReason(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_enumerated(tvb, offset, actx, tree, hf_index,
                                     3, NULL, TRUE, 0, h460_14_MlppReason_value_map);

  return offset;
}



static int
dissect_h460_14_NULL(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_null(tvb, offset, actx, tree, hf_index);

  return offset;
}


static const value_string h460_14_MlppNotification_vals[] = {
  {   0, "preemptionPending" },
  {   1, "preemptionInProgress" },
  {   2, "preemptionEnd" },
  {   3, "preemptionComplete" },
  { 0, NULL }
};

static const per_choice_t h460_14_MlppNotification_choice[] = {
  {   0, &hf_h460_14_preemptionPending, ASN1_EXTENSION_ROOT    , dissect_h460_14_NULL },
  {   1, &hf_h460_14_preemptionInProgress, ASN1_EXTENSION_ROOT    , dissect_h460_14_NULL },
  {   2, &hf_h460_14_preemptionEnd, ASN1_EXTENSION_ROOT    , dissect_h460_14_NULL },
  {   3, &hf_h460_14_preemptionComplete, ASN1_EXTENSION_ROOT    , dissect_h460_14_NULL },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_14_MlppNotification(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_14_MlppNotification, h460_14_MlppNotification_choice,
                                 NULL);

  return offset;
}



static int
dissect_h460_14_INTEGER_0_255(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 255U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_14_AlternateParty_sequence[] = {
  { &hf_h460_14_altID       , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_AliasAddress },
  { &hf_h460_14_altTimer    , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_14_INTEGER_0_255 },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_14_AlternateParty(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_14_AlternateParty, h460_14_AlternateParty_sequence);

  return offset;
}


static const per_sequence_t h460_14_ReleaseCall_sequence[] = {
  { &hf_h460_14_preemptCallID, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_CallIdentifier },
  { &hf_h460_14_releaseReason, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_14_MlppReason },
  { &hf_h460_14_releaseDelay, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_14_INTEGER_0_255 },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_14_ReleaseCall(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_14_ReleaseCall, h460_14_ReleaseCall_sequence);

  return offset;
}


static const per_sequence_t h460_14_MLPPInfo_sequence[] = {
  { &hf_h460_14_precedence  , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_14_MlppPrecedence },
  { &hf_h460_14_mlppReason  , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_14_MlppReason },
  { &hf_h460_14_mlppNotification, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_14_MlppNotification },
  { &hf_h460_14_alternateParty, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_14_AlternateParty },
  { &hf_h460_14_releaseCall , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_14_ReleaseCall },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_14_MLPPInfo(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_14_MLPPInfo, h460_14_MLPPInfo_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_14_MLPPInfo_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_14_MLPPInfo(tvb, offset, &asn1_ctx, tree, hf_h460_14_h460_14_MLPPInfo_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module SIGNALLING-CHANNEL-SUSPEND-REDIRECT --- --- ---                 */


static const per_sequence_t h460_15_SEQUENCE_OF_TransportAddress_sequence_of[1] = {
  { &hf_h460_15_channelResumeAddress_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h225_TransportAddress },
};

static int
dissect_h460_15_SEQUENCE_OF_TransportAddress(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence_of(tvb, offset, actx, tree, hf_index,
                                      ett_h460_15_SEQUENCE_OF_TransportAddress, h460_15_SEQUENCE_OF_TransportAddress_sequence_of);

  return offset;
}



static int
dissect_h460_15_BOOLEAN(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_boolean(tvb, offset, actx, tree, hf_index, NULL);

  return offset;
}



static int
dissect_h460_15_NULL(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_null(tvb, offset, actx, tree, hf_index);

  return offset;
}


static const per_sequence_t h460_15_ChannelSuspendRequest_sequence[] = {
  { &hf_h460_15_channelResumeAddress, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_15_SEQUENCE_OF_TransportAddress },
  { &hf_h460_15_immediateResume, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_15_BOOLEAN },
  { &hf_h460_15_resetH245   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_15_NULL },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_15_ChannelSuspendRequest(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_15_ChannelSuspendRequest, h460_15_ChannelSuspendRequest_sequence);

  return offset;
}


static const per_sequence_t h460_15_ChannelSuspendResponse_sequence[] = {
  { &hf_h460_15_okToSuspend , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_15_BOOLEAN },
  { &hf_h460_15_channelResumeAddress, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_15_SEQUENCE_OF_TransportAddress },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_15_ChannelSuspendResponse(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_15_ChannelSuspendResponse, h460_15_ChannelSuspendResponse_sequence);

  return offset;
}


static const per_sequence_t h460_15_ChannelSuspendConfirm_sequence[] = {
  { NULL, ASN1_EXTENSION_ROOT, 0, NULL }
};

static int
dissect_h460_15_ChannelSuspendConfirm(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_15_ChannelSuspendConfirm, h460_15_ChannelSuspendConfirm_sequence);

  return offset;
}


static const per_sequence_t h460_15_ChannelSuspendCancel_sequence[] = {
  { NULL, ASN1_EXTENSION_ROOT, 0, NULL }
};

static int
dissect_h460_15_ChannelSuspendCancel(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_15_ChannelSuspendCancel, h460_15_ChannelSuspendCancel_sequence);

  return offset;
}



static int
dissect_h460_15_INTEGER_0_4294967295(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 4294967295U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_15_ChannelResumeRequest_sequence[] = {
  { &hf_h460_15_randomNumber, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_15_INTEGER_0_4294967295 },
  { &hf_h460_15_resetH245   , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_15_NULL },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_15_ChannelResumeRequest(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_15_ChannelResumeRequest, h460_15_ChannelResumeRequest_sequence);

  return offset;
}


static const per_sequence_t h460_15_ChannelResumeResponse_sequence[] = {
  { NULL, ASN1_EXTENSION_ROOT, 0, NULL }
};

static int
dissect_h460_15_ChannelResumeResponse(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_15_ChannelResumeResponse, h460_15_ChannelResumeResponse_sequence);

  return offset;
}


static const value_string h460_15_T_signallingChannelData_vals[] = {
  {   0, "channelSuspendRequest" },
  {   1, "channelSuspendResponse" },
  {   2, "channelSuspendConfirm" },
  {   3, "channelSuspendCancel" },
  {   4, "channelResumeRequest" },
  {   5, "channelResumeResponse" },
  { 0, NULL }
};

static const per_choice_t h460_15_T_signallingChannelData_choice[] = {
  {   0, &hf_h460_15_channelSuspendRequest, ASN1_EXTENSION_ROOT    , dissect_h460_15_ChannelSuspendRequest },
  {   1, &hf_h460_15_channelSuspendResponse, ASN1_EXTENSION_ROOT    , dissect_h460_15_ChannelSuspendResponse },
  {   2, &hf_h460_15_channelSuspendConfirm, ASN1_EXTENSION_ROOT    , dissect_h460_15_ChannelSuspendConfirm },
  {   3, &hf_h460_15_channelSuspendCancel, ASN1_EXTENSION_ROOT    , dissect_h460_15_ChannelSuspendCancel },
  {   4, &hf_h460_15_channelResumeRequest, ASN1_EXTENSION_ROOT    , dissect_h460_15_ChannelResumeRequest },
  {   5, &hf_h460_15_channelResumeResponse, ASN1_EXTENSION_ROOT    , dissect_h460_15_ChannelResumeResponse },
  { 0, NULL, 0, NULL }
};

static int
dissect_h460_15_T_signallingChannelData(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_choice(tvb, offset, actx, tree, hf_index,
                                 ett_h460_15_T_signallingChannelData, h460_15_T_signallingChannelData_choice,
                                 NULL);

  return offset;
}


static const per_sequence_t h460_15_SignallingChannelData_sequence[] = {
  { &hf_h460_15_signallingChannelData, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_15_T_signallingChannelData },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_15_SignallingChannelData(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_15_SignallingChannelData, h460_15_SignallingChannelData_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_15_SignallingChannelData_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_15_SignallingChannelData(tvb, offset, &asn1_ctx, tree, hf_h460_15_h460_15_SignallingChannelData_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module SIGNALLING-TRAVERSAL --- --- ---                                */


static const per_sequence_t h460_18_IncomingCallIndication_sequence[] = {
  { &hf_h460_18_callSignallingAddress, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_TransportAddress },
  { &hf_h460_18_callID      , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_CallIdentifier },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_18_IncomingCallIndication(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_18_IncomingCallIndication, h460_18_IncomingCallIndication_sequence);

  return offset;
}


static const per_sequence_t h460_18_LRQKeepAliveData_sequence[] = {
  { &hf_h460_18_lrqKeepAliveInterval, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h225_TimeToLive },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_18_LRQKeepAliveData(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_18_LRQKeepAliveData, h460_18_LRQKeepAliveData_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_18_IncomingCallIndication_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_18_IncomingCallIndication(tvb, offset, &asn1_ctx, tree, hf_h460_18_h460_18_IncomingCallIndication_PDU);
  offset += 7; offset >>= 3;
  return offset;
}
static int dissect_h460_18_LRQKeepAliveData_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_18_LRQKeepAliveData(tvb, offset, &asn1_ctx, tree, hf_h460_18_h460_18_LRQKeepAliveData_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module MEDIA-TRAVERSAL --- --- ---                                     */



static int
dissect_h460_19_INTEGER_0_4294967295(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 4294967295U, NULL, FALSE);

  return offset;
}



static int
dissect_h460_19_INTEGER_0_127(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            0U, 127U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_19_TraversalParameters_sequence[] = {
  { &hf_h460_19_multiplexedMediaChannel, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h245_TransportAddress },
  { &hf_h460_19_multiplexedMediaControlChannel, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h245_TransportAddress },
  { &hf_h460_19_multiplexID , ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_19_INTEGER_0_4294967295 },
  { &hf_h460_19_keepAliveChannel, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h245_TransportAddress },
  { &hf_h460_19_keepAlivePayloadType, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_19_INTEGER_0_127 },
  { &hf_h460_19_keepAliveInterval, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h225_TimeToLive },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_19_TraversalParameters(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_19_TraversalParameters, h460_19_TraversalParameters_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_19_TraversalParameters_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_19_TraversalParameters(tvb, offset, &asn1_ctx, tree, hf_h460_19_h460_19_TraversalParameters_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


/* --- Module MESSAGE-BROADCAST --- --- ---                                   */


static const per_sequence_t h460_21_SEQUENCE_SIZE_1_256_OF_Capability_sequence_of[1] = {
  { &hf_h460_21_capabilities_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h245_Capability },
};

static int
dissect_h460_21_SEQUENCE_SIZE_1_256_OF_Capability(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_sequence_of(tvb, offset, actx, tree, hf_index,
                                                  ett_h460_21_SEQUENCE_SIZE_1_256_OF_Capability, h460_21_SEQUENCE_SIZE_1_256_OF_Capability_sequence_of,
                                                  1, 256, FALSE);

  return offset;
}



static int
dissect_h460_21_INTEGER_1_65535(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_integer(tvb, offset, actx, tree, hf_index,
                                                            1U, 65535U, NULL, FALSE);

  return offset;
}


static const per_sequence_t h460_21_ReceiveCapabilities_sequence[] = {
  { &hf_h460_21_capabilities, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_21_SEQUENCE_SIZE_1_256_OF_Capability },
  { &hf_h460_21_maxGroups   , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_21_INTEGER_1_65535 },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_21_ReceiveCapabilities(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_21_ReceiveCapabilities, h460_21_ReceiveCapabilities_sequence);

  return offset;
}



static int
dissect_h460_21_GloballyUniqueID(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_octet_string(tvb, offset, actx, tree, hf_index,
                                       16, 16, FALSE, NULL);

  return offset;
}


static const per_sequence_t h460_21_TransmitCapabilities_sequence[] = {
  { &hf_h460_21_groupIdentifer, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h460_21_GloballyUniqueID },
  { &hf_h460_21_capability  , ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h245_Capability },
  { &hf_h460_21_sourceAddress, ASN1_EXTENSION_ROOT    , ASN1_NOT_OPTIONAL, dissect_h245_UnicastAddress },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_21_TransmitCapabilities(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_21_TransmitCapabilities, h460_21_TransmitCapabilities_sequence);

  return offset;
}


static const per_sequence_t h460_21_SEQUENCE_SIZE_1_256_OF_TransmitCapabilities_sequence_of[1] = {
  { &hf_h460_21_transmitCapabilities_item, ASN1_NO_EXTENSIONS     , ASN1_NOT_OPTIONAL, dissect_h460_21_TransmitCapabilities },
};

static int
dissect_h460_21_SEQUENCE_SIZE_1_256_OF_TransmitCapabilities(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_constrained_sequence_of(tvb, offset, actx, tree, hf_index,
                                                  ett_h460_21_SEQUENCE_SIZE_1_256_OF_TransmitCapabilities, h460_21_SEQUENCE_SIZE_1_256_OF_TransmitCapabilities_sequence_of,
                                                  1, 256, FALSE);

  return offset;
}


static const per_sequence_t h460_21_CapabilityAdvertisement_sequence[] = {
  { &hf_h460_21_receiveCapabilities, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_21_ReceiveCapabilities },
  { &hf_h460_21_transmitCapabilities, ASN1_EXTENSION_ROOT    , ASN1_OPTIONAL    , dissect_h460_21_SEQUENCE_SIZE_1_256_OF_TransmitCapabilities },
  { NULL, 0, 0, NULL }
};

static int
dissect_h460_21_CapabilityAdvertisement(tvbuff_t *tvb _U_, int offset _U_, asn1_ctx_t *actx _U_, proto_tree *tree _U_, int hf_index _U_) {
  offset = dissect_per_sequence(tvb, offset, actx, tree, hf_index,
                                   ett_h460_21_CapabilityAdvertisement, h460_21_CapabilityAdvertisement_sequence);

  return offset;
}

/*--- PDUs ---*/

static int dissect_h460_21_CapabilityAdvertisement_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, void *data _U_) {
  int offset = 0;
  asn1_ctx_t asn1_ctx;
  asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, TRUE, pinfo);
  offset = dissect_h460_21_CapabilityAdvertisement(tvb, offset, &asn1_ctx, tree, hf_h460_21_h460_21_CapabilityAdvertisement_PDU);
  offset += 7; offset >>= 3;
  return offset;
}


static int
dissect_ies(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) {
  int offset = 0;

  if (q931_ie_handle) {
    call_dissector(q931_ie_handle, tvb, pinfo, tree);
    offset += tvb_reported_length_remaining(tvb, offset);
  }
  return offset;
}

static int
dissect_ras(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) {
  int offset = 0;

  if (h225_ras_handle) {
    call_dissector(h225_ras_handle, tvb, pinfo, tree);
    offset += tvb_reported_length_remaining(tvb, offset);
  }
  return offset;
}

typedef struct _h460_feature_t {
  guint32 opt;
  const gchar *id;
  const gchar *name;
  dissector_t content_pdu;
  /*---*/
  const gchar *key_gd;
  const gchar *key_fd;
  const gchar *key_gm;
  const gchar *key_gi;
  dissector_handle_t content_hnd;
} h460_feature_t;

/* Fill in the items after content_pdu */
#define FFILL	NULL, NULL, NULL, NULL, NULL

/* options */
#define GD 0x01  /* present in H.225 GenericData */
#define FD 0x02  /* present in H.225 FeatureDescriptor */
#define GM 0x04  /* present in H.245 GenericMessage */
#define GI 0x08  /* present in H.245 GenericInformation */

static h460_feature_t h460_feature_tab[] = {
  /* H.460.3 */
  { GD|FD,  "2",   "Number Portability", NULL, FFILL },
  { GD|FD,  "2/1", "NumberPortabilityData", dissect_h460_2_NumberPortabilityInfo_PDU, FFILL },
  /* H.460.3 */
  { GD|FD,  "3",   "Circuit Status", NULL, FFILL },
  { GD|FD,  "3/1", "Circuit Status Map", dissect_h460_3_CircuitStatus_PDU, FFILL },
  /* H.460.4 */
  { GD|FD,  "4",   "CallPriorityDesignation", NULL, FFILL },
  { GD|FD,  "4/1", "CallPriorityRequest", dissect_h460_4_CallPriorityInfo_PDU, FFILL },
  { GD|FD,  "4/2", "CallPriorityConfirm", dissect_h460_4_CallPriorityInfo_PDU, FFILL },
  { GD|FD,  "4/3", "Country/InternationalNetworkCallOriginationRequest", dissect_h460_4_CountryInternationalNetworkCallOriginationIdentification_PDU, FFILL },
  { GD|FD,  "4/4", "Country/InternationalNetworkCallOriginationConfirm", dissect_h460_4_CountryInternationalNetworkCallOriginationIdentification_PDU, FFILL },
  /* H.460.5 */
  { GD|FD,  "5",   "DuplicateIEs", NULL, FFILL },
  { GD|FD,  "5/1", "IEsString", dissect_ies, FFILL },
  /* H.460.6 */
  { GD|FD,  "6",   "Extended Fast Connect", NULL, FFILL },
  { GD|FD,  "6/1", "EFC Proposal", NULL, FFILL },
  { GD|FD,  "6/2", "EFC Close All Media Channels", NULL, FFILL },
  { GD|FD,  "6/3", "EFC Request New Proposals", NULL, FFILL },
  { GD|FD,  "6/4", "EFC Require Symmetric Operation", NULL, FFILL },
  /* H.460.7 */
  { GD|FD,  "7",   "Digit Maps", NULL, FFILL },
  {    FD,  "7/1", "Digit Maps Length", NULL, FFILL },
  {    FD,  "7/2", "Digit Map Length for Overlapped Sending", NULL, FFILL },
  {    FD,  "7/3", "HTTP Digit Maps Download Capability", NULL, FFILL },
  { GD   ,  "7/1", "Start Timer", NULL, FFILL },
  { GD   ,  "7/2", "Short Timer", NULL, FFILL },
  { GD   ,  "7/3", "Long Timer", NULL, FFILL },
  { GD   ,  "7/4", "Digit Map String", NULL, FFILL },
  { GD   ,  "7/5",   "ToN Associated Digit Map", NULL, FFILL },
  { GD   ,  "7/5/1", "Type of Number", NULL, FFILL },
  { GD   ,  "7/5/2", "Digit Map Strings for ToN", NULL, FFILL },
  { GD   ,  "7/6", "Digit Map URL", NULL, FFILL },
  /* H.460.8 */
  { GD|FD,  "8",   "Querying for Alternate Routes", NULL, FFILL },
  { GD|FD,  "8/1", "Query Count", NULL, FFILL },
  { GD|FD,  "8/2", "Call Termination Cause", NULL, FFILL },
  /* H.460.9 */
  { GD|FD,  "9",   "QoS-monitoring Reporting", NULL, FFILL },
  { GD|FD,  "9/0", "qosMonitoringFinalOnly", NULL, FFILL },
  { GD|FD,  "9/1", "qosMonitoringReportData", dissect_h460_9_QosMonitoringReportData_PDU, FFILL },
  { GD|FD,  "9/2", "qosMonitoringExtendedRTPMetrics", dissect_h460_9_ExtendedRTPMetrics_PDU, FFILL },
  /* H.460.10 */
  { GD|FD, "10",   "Call Party Category", NULL, FFILL },
  { GD|FD, "10/1", "Call party category info", dissect_h460_10_CallPartyCategoryInfo_PDU, FFILL },
  /* H.460.11 */
  { GD|FD, "11",   "Delayed Call Establishment", NULL, FFILL },
  { GD|FD, "11/1", "Delay Point Indicator", NULL, FFILL },
  { GD|FD, "11/2", "Implicit DCE Release", NULL, FFILL },
  { GD|FD, "11/3", "Delay Point Reached", NULL, FFILL },
  { GD|FD, "11/4", "DCE Release", NULL, FFILL },
  /* H.460.12 */
  { GD|FD, "12",   "Glare Control Indicator", NULL, FFILL },
  { GD|FD, "12/1", "Glare Control Indicator Parameter", NULL, FFILL },
  /* H.460.13 */
  { GD|FD, "13",   "Called User Release Control", NULL, FFILL },
  { GD|FD, "13/1", "Called User Release Control", NULL, FFILL },
  /* H.460.14 */
  { GD|FD, "14",   "Multi-Level Precedence and Preemption", NULL, FFILL },
  { GD|FD, "14/1", "MLPP Information", dissect_h460_14_MLPPInfo_PDU, FFILL },
  /* H.460.15 */
  { GD|FD, "15",   "Call signalling transport channel suspension and redirection", NULL, FFILL },
  { GD|FD, "15/1", "Signalling channel suspend and redirect", dissect_h460_15_SignallingChannelData_PDU, FFILL },
  /* H.460.16 */
  { GD|FD, "16",   "Multiple-message Release Sequence", NULL, FFILL },
  { GD|FD, "16/1", "MMRS use required", NULL, FFILL },
  { GD|FD, "16/2", "MMRS procedure", NULL, FFILL },
  { GD|FD, "16/3", "MMRS additional IEs", dissect_ies, FFILL },
  /* H.460.17 */
  { GD|FD, "17",   "RAS over H.225.0", NULL, FFILL },
  { GD|FD, "17/1", "RAS message", dissect_ras, FFILL },
  /* H.460.18 */
  { GD|FD   , "18",   "Signalling Traversal", NULL, FFILL },
  { GD|FD   , "18/1", "IncomingCallIndication", dissect_h460_18_IncomingCallIndication_PDU, FFILL },
  { GD|FD   , "18/2", "LRQKeepAliveData", dissect_h460_18_LRQKeepAliveData_PDU, FFILL },
  {       GM, "0.0.8.460.18.0.1",   "Signalling Traversal", NULL, FFILL },
  {       GM, "0.0.8.460.18.0.1-1",   "connectionCorrelation", NULL, FFILL },
  {       GM, "0.0.8.460.18.0.1-1/1", "callIdentifier", NULL, FFILL },
  {       GM, "0.0.8.460.18.0.1-1/2", "answerCall", NULL, FFILL },
  /* H.460.19 */
  { GD|FD   , "19", "mediaNATFWTraversal", NULL, FFILL },
  { GD|FD   , "19/1", "supportTransmitMultiplexedMedia", NULL, FFILL },
  { GD|FD   , "19/2", "mediaTraversalServer", NULL, FFILL },
  {       GI, "0.0.8.460.19.0.1", "mediaNATFWTraversal", NULL, FFILL },
  {       GI, "0.0.8.460.19.0.1/1", "Traversal Parameters", dissect_h460_19_TraversalParameters_PDU, FFILL },
  /* H.460.20 */
  { GD|FD, "20",   "LocationSourceAddress", NULL, FFILL },
  { GD|FD, "20/1", "LocationSourceAddress", dissect_h225_ExtendedAliasAddress_PDU, FFILL },
  /* H.460.21 */
  { GD|FD, "21",   "Message Broadcast", NULL, FFILL },
  { GD|FD, "21/1", "MessageBroadcastParameter", dissect_h460_21_CapabilityAdvertisement_PDU, FFILL },
  /* H.460.22 */
  { GD|FD, "22",     "securityProtocolNegotiation", NULL, FFILL },
  { GD|FD, "22/1",   "tlsSecurityProtocol", NULL, FFILL },
  { GD|FD, "22/1/1", "priority", NULL, FFILL },
  { GD|FD, "22/1/2", "connectionAddress", NULL, FFILL },
  { GD|FD, "22/2",   "ipsecSecurityProtocol", NULL, FFILL },
  { GD|FD, "22/2/1", "priority", NULL, FFILL },
  { 0, NULL, NULL, NULL, FFILL },
};

static h460_feature_t *find_ftr(const gchar *key) {
  h460_feature_t *ftr = NULL;
  h460_feature_t *f;

  for (f=h460_feature_tab; f->id; f++) {
    if (f->key_gd && !strcmp(key, f->key_gd)) { ftr = f; break; }
    if (f->key_fd && !strcmp(key, f->key_fd)) { ftr = f; break; }
    if (f->key_gm && !strcmp(key, f->key_gm)) { ftr = f; break; }
    if (f->key_gi && !strcmp(key, f->key_gi)) { ftr = f; break; }
  }
  return ftr;
}

/*--- dissect_h460_name -------------------------------------------*/
static int
dissect_h460_name(tvbuff_t *tvb _U_, packet_info *pinfo, proto_tree *tree, void *data) {
  int offset = 0;
  asn1_ctx_t *actx;
  h460_feature_t *ftr;

  /* Reject the packet if data is NULL */
  if (data == NULL)
    return 0;
  actx = get_asn1_ctx(data);
  DISSECTOR_ASSERT(actx);

  if (tree) {
    ftr = find_ftr(pinfo->match_string);
    if (ftr) {
      proto_item_append_text(actx->created_item, " - %s", ftr->name);
      proto_item_append_text(proto_item_get_parent(proto_tree_get_parent(tree)), ": %s", ftr->name);
    } else {
      proto_item_append_text(actx->created_item, " - unknown(%s)", pinfo->match_string);
    }
  }

  return offset;
}

/*--- proto_register_h460 ----------------------------------------------*/
void proto_register_h460(void) {
  h460_feature_t *ftr;

  /* List of fields */
  static hf_register_info hf[] = {

/* --- Module NUMBER-PORTABILITY --- --- ---                                  */

    { &hf_h460_2_h460_2_NumberPortabilityInfo_PDU,
      { "NumberPortabilityInfo", "h460.2.NumberPortabilityInfo",
        FT_UINT32, BASE_DEC, VALS(h460_2_NumberPortabilityInfo_vals), 0,
        NULL, HFILL }},
    { &hf_h460_2_numberPortabilityRejectReason,
      { "numberPortabilityRejectReason", "h460.2.numberPortabilityRejectReason",
        FT_UINT32, BASE_DEC, VALS(h460_2_NumberPortabilityRejectReason_vals), 0,
        NULL, HFILL }},
    { &hf_h460_2_nUMBERPORTABILITYDATA,
      { "nUMBERPORTABILITYDATA", "h460.2.nUMBERPORTABILITYDATA_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_2_addressTranslated,
      { "addressTranslated", "h460.2.addressTranslated_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_2_portedAddress,
      { "portedAddress", "h460.2.portedAddress_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "PortabilityAddress", HFILL }},
    { &hf_h460_2_routingAddress,
      { "routingAddress", "h460.2.routingAddress_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "PortabilityAddress", HFILL }},
    { &hf_h460_2_regionalParams,
      { "regionalParams", "h460.2.regionalParams_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "RegionalParameters", HFILL }},
    { &hf_h460_2_unspecified,
      { "unspecified", "h460.2.unspecified_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_2_qorPortedNumber,
      { "qorPortedNumber", "h460.2.qorPortedNumber_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_2_aliasAddress,
      { "aliasAddress", "h460.2.aliasAddress",
        FT_UINT32, BASE_DEC, VALS(AliasAddress_vals), 0,
        NULL, HFILL }},
    { &hf_h460_2_typeOfAddress,
      { "typeOfAddress", "h460.2.typeOfAddress",
        FT_UINT32, BASE_DEC, VALS(h460_2_NumberPortabilityTypeOfNumber_vals), 0,
        "NumberPortabilityTypeOfNumber", HFILL }},
    { &hf_h460_2_publicTypeOfNumber,
      { "publicTypeOfNumber", "h460.2.publicTypeOfNumber",
        FT_UINT32, BASE_DEC, VALS(h225_PublicTypeOfNumber_vals), 0,
        NULL, HFILL }},
    { &hf_h460_2_privateTypeOfNumber,
      { "privateTypeOfNumber", "h460.2.privateTypeOfNumber",
        FT_UINT32, BASE_DEC, VALS(h225_PrivateTypeOfNumber_vals), 0,
        NULL, HFILL }},
    { &hf_h460_2_portabilityTypeOfNumber,
      { "portabilityTypeOfNumber", "h460.2.portabilityTypeOfNumber",
        FT_UINT32, BASE_DEC, VALS(h460_2_PortabilityTypeOfNumber_vals), 0,
        NULL, HFILL }},
    { &hf_h460_2_portedNumber,
      { "portedNumber", "h460.2.portedNumber_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_2_routingNumber,
      { "routingNumber", "h460.2.routingNumber_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_2_concatenatedNumber,
      { "concatenatedNumber", "h460.2.concatenatedNumber_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_2_t35CountryCode,
      { "t35CountryCode", "h460.2.t35CountryCode",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_2_t35Extension,
      { "t35Extension", "h460.2.t35Extension",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_2_variantIdentifier,
      { "variantIdentifier", "h460.2.variantIdentifier",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_1_255", HFILL }},
    { &hf_h460_2_regionalData,
      { "regionalData", "h460.2.regionalData",
        FT_BYTES, BASE_NONE, NULL, 0,
        "OCTET_STRING", HFILL }},

/* --- Module CIRCUIT-STATUS-MAP --- --- ---                                  */

    { &hf_h460_3_h460_3_CircuitStatus_PDU,
      { "CircuitStatus", "h460.3.CircuitStatus_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_3_circuitStatusMap,
      { "circuitStatusMap", "h460.3.circuitStatusMap",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_CircuitStatusMap", HFILL }},
    { &hf_h460_3_circuitStatusMap_item,
      { "CircuitStatusMap", "h460.3.CircuitStatusMap_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_3_statusType,
      { "statusType", "h460.3.statusType",
        FT_UINT32, BASE_DEC, VALS(h460_3_CircuitStatusType_vals), 0,
        "CircuitStatusType", HFILL }},
    { &hf_h460_3_baseCircuitID,
      { "baseCircuitID", "h460.3.baseCircuitID_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "CircuitIdentifier", HFILL }},
    { &hf_h460_3_range,
      { "range", "h460.3.range",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_4095", HFILL }},
    { &hf_h460_3_status,
      { "status", "h460.3.status",
        FT_BYTES, BASE_NONE, NULL, 0,
        "OCTET_STRING", HFILL }},
    { &hf_h460_3_serviceStatus,
      { "serviceStatus", "h460.3.serviceStatus_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_3_busyStatus,
      { "busyStatus", "h460.3.busyStatus_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},

/* --- Module CALL-PRIORITY --- --- ---                                       */

    { &hf_h460_4_h460_4_CallPriorityInfo_PDU,
      { "CallPriorityInfo", "h460.4.CallPriorityInfo_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_h460_4_CountryInternationalNetworkCallOriginationIdentification_PDU,
      { "CountryInternationalNetworkCallOriginationIdentification", "h460.4.CountryInternationalNetworkCallOriginationIdentification_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_priorityValue,
      { "priorityValue", "h460.4.priorityValue",
        FT_UINT32, BASE_DEC, VALS(h460_4_T_priorityValue_vals), 0,
        NULL, HFILL }},
    { &hf_h460_4_emergencyAuthorized,
      { "emergencyAuthorized", "h460.4.emergencyAuthorized_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_emergencyPublic,
      { "emergencyPublic", "h460.4.emergencyPublic_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_high,
      { "high", "h460.4.high_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_normal,
      { "normal", "h460.4.normal_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_priorityExtension,
      { "priorityExtension", "h460.4.priorityExtension",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_4_tokens,
      { "tokens", "h460.4.tokens",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_ClearToken", HFILL }},
    { &hf_h460_4_tokens_item,
      { "ClearToken", "h460.4.ClearToken_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_cryptoTokens,
      { "cryptoTokens", "h460.4.cryptoTokens",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_CryptoToken", HFILL }},
    { &hf_h460_4_cryptoTokens_item,
      { "CryptoToken", "h460.4.CryptoToken",
        FT_UINT32, BASE_DEC, VALS(h235_CryptoToken_vals), 0,
        NULL, HFILL }},
    { &hf_h460_4_rejectReason,
      { "rejectReason", "h460.4.rejectReason",
        FT_UINT32, BASE_DEC, VALS(h460_4_T_rejectReason_vals), 0,
        NULL, HFILL }},
    { &hf_h460_4_priorityUnavailable,
      { "priorityUnavailable", "h460.4.priorityUnavailable_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_priorityUnauthorized,
      { "priorityUnauthorized", "h460.4.priorityUnauthorized_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_priorityValueUnknown,
      { "priorityValueUnknown", "h460.4.priorityValueUnknown_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_numberingPlan,
      { "numberingPlan", "h460.4.numberingPlan",
        FT_UINT32, BASE_DEC, VALS(h460_4_T_numberingPlan_vals), 0,
        NULL, HFILL }},
    { &hf_h460_4_x121,
      { "x121", "h460.4.x121_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_x121CountryCode,
      { "countryCode", "h460.4.countryCode",
        FT_STRING, BASE_NONE, NULL, 0,
        "X121CountryCode", HFILL }},
    { &hf_h460_4_e164,
      { "e164", "h460.4.e164_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_4_e164CountryCode,
      { "countryCode", "h460.4.countryCode",
        FT_STRING, BASE_NONE, NULL, 0,
        "E164CountryCode", HFILL }},
    { &hf_h460_4_identificationCode,
      { "identificationCode", "h460.4.identificationCode",
        FT_STRING, BASE_NONE, NULL, 0,
        NULL, HFILL }},

/* --- Modules QOS-MONITORING-REPORT QOS-MONITORING-EXTENDED-VOIP-REPORT --- --- --- */

    { &hf_h460_9_h460_9_QosMonitoringReportData_PDU,
      { "QosMonitoringReportData", "h460.9.QosMonitoringReportData",
        FT_UINT32, BASE_DEC, VALS(h460_9_QosMonitoringReportData_vals), 0,
        NULL, HFILL }},
    { &hf_h460_9_h460_9_ExtendedRTPMetrics_PDU,
      { "ExtendedRTPMetrics", "h460.9.ExtendedRTPMetrics_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_extensionId,
      { "extensionId", "h460.9.extensionId",
        FT_UINT32, BASE_DEC, VALS(h225_GenericIdentifier_vals), 0,
        "GenericIdentifier", HFILL }},
    { &hf_h460_9_extensionContent,
      { "extensionContent", "h460.9.extensionContent",
        FT_BYTES, BASE_NONE, NULL, 0,
        "OCTET_STRING", HFILL }},
    { &hf_h460_9_rtpAddress,
      { "rtpAddress", "h460.9.rtpAddress_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "TransportChannelInfo", HFILL }},
    { &hf_h460_9_rtcpAddress,
      { "rtcpAddress", "h460.9.rtcpAddress_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "TransportChannelInfo", HFILL }},
    { &hf_h460_9_sessionId,
      { "sessionId", "h460.9.sessionId",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_1_255", HFILL }},
    { &hf_h460_9_nonStandardData,
      { "nonStandardData", "h460.9.nonStandardData_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "NonStandardParameter", HFILL }},
    { &hf_h460_9_mediaSenderMeasures,
      { "mediaSenderMeasures", "h460.9.mediaSenderMeasures_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_worstEstimatedEnd2EndDelay,
      { "worstEstimatedEnd2EndDelay", "h460.9.worstEstimatedEnd2EndDelay",
        FT_UINT32, BASE_DEC, NULL, 0,
        "EstimatedEnd2EndDelay", HFILL }},
    { &hf_h460_9_meanEstimatedEnd2EndDelay,
      { "meanEstimatedEnd2EndDelay", "h460.9.meanEstimatedEnd2EndDelay",
        FT_UINT32, BASE_DEC, NULL, 0,
        "EstimatedEnd2EndDelay", HFILL }},
    { &hf_h460_9_mediaReceiverMeasures,
      { "mediaReceiverMeasures", "h460.9.mediaReceiverMeasures_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_cumulativeNumberOfPacketsLost,
      { "cumulativeNumberOfPacketsLost", "h460.9.cumulativeNumberOfPacketsLost",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_4294967295", HFILL }},
    { &hf_h460_9_packetLostRate,
      { "packetLostRate", "h460.9.packetLostRate",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_worstJitter,
      { "worstJitter", "h460.9.worstJitter",
        FT_UINT32, BASE_DEC, NULL, 0,
        "CalculatedJitter", HFILL }},
    { &hf_h460_9_estimatedThroughput,
      { "estimatedThroughput", "h460.9.estimatedThroughput",
        FT_UINT32, BASE_DEC, NULL, 0,
        "BandWidth", HFILL }},
    { &hf_h460_9_fractionLostRate,
      { "fractionLostRate", "h460.9.fractionLostRate",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_meanJitter,
      { "meanJitter", "h460.9.meanJitter",
        FT_UINT32, BASE_DEC, NULL, 0,
        "CalculatedJitter", HFILL }},
    { &hf_h460_9_extensions,
      { "extensions", "h460.9.extensions",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_Extension", HFILL }},
    { &hf_h460_9_extensions_item,
      { "Extension", "h460.9.Extension_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_callReferenceValue,
      { "callReferenceValue", "h460.9.callReferenceValue",
        FT_UINT32, BASE_DEC, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_conferenceID,
      { "conferenceID", "h460.9.conferenceID",
        FT_GUID, BASE_NONE, NULL, 0,
        "ConferenceIdentifier", HFILL }},
    { &hf_h460_9_callIdentifier,
      { "callIdentifier", "h460.9.callIdentifier_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_mediaChannelsQoS,
      { "mediaChannelsQoS", "h460.9.mediaChannelsQoS",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_RTCPMeasures", HFILL }},
    { &hf_h460_9_mediaChannelsQoS_item,
      { "RTCPMeasures", "h460.9.RTCPMeasures_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_periodic,
      { "periodic", "h460.9.periodic_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "PeriodicQoSMonReport", HFILL }},
    { &hf_h460_9_final,
      { "final", "h460.9.final_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "FinalQosMonReport", HFILL }},
    { &hf_h460_9_interGK,
      { "interGK", "h460.9.interGK_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "InterGKQosMonReport", HFILL }},
    { &hf_h460_9_perCallInfo,
      { "perCallInfo", "h460.9.perCallInfo",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_PerCallQoSReport", HFILL }},
    { &hf_h460_9_perCallInfo_item,
      { "PerCallQoSReport", "h460.9.PerCallQoSReport_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_mediaInfo,
      { "mediaInfo", "h460.9.mediaInfo",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_RTCPMeasures", HFILL }},
    { &hf_h460_9_mediaInfo_item,
      { "RTCPMeasures", "h460.9.RTCPMeasures_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_networkPacketLossRate,
      { "networkPacketLossRate", "h460.9.networkPacketLossRate",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_9_jitterBufferDiscardRate,
      { "jitterBufferDiscardRate", "h460.9.jitterBufferDiscardRate",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_9_burstMetrics,
      { "burstMetrics", "h460.9.burstMetrics_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_rtcpRoundTripDelay,
      { "rtcpRoundTripDelay", "h460.9.rtcpRoundTripDelay",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_endSystemDelay,
      { "endSystemDelay", "h460.9.endSystemDelay",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_signalLevel,
      { "signalLevel", "h460.9.signalLevel",
        FT_INT32, BASE_DEC, NULL, 0,
        "INTEGER_M127_10", HFILL }},
    { &hf_h460_9_noiseLevel,
      { "noiseLevel", "h460.9.noiseLevel",
        FT_INT32, BASE_DEC, NULL, 0,
        "INTEGER_M127_0", HFILL }},
    { &hf_h460_9_residualEchoReturnLoss,
      { "residualEchoReturnLoss", "h460.9.residualEchoReturnLoss",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_127", HFILL }},
    { &hf_h460_9_rFactor,
      { "rFactor", "h460.9.rFactor",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_100", HFILL }},
    { &hf_h460_9_extRFactor,
      { "extRFactor", "h460.9.extRFactor",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_100", HFILL }},
    { &hf_h460_9_estimatedMOSLQ,
      { "estimatedMOSLQ", "h460.9.estimatedMOSLQ",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_10_50", HFILL }},
    { &hf_h460_9_estimatedMOSCQ,
      { "estimatedMOSCQ", "h460.9.estimatedMOSCQ",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_10_50", HFILL }},
    { &hf_h460_9_plcType,
      { "plcType", "h460.9.plcType",
        FT_UINT32, BASE_DEC, VALS(h460_9_PLCtypes_vals), 0,
        "PLCtypes", HFILL }},
    { &hf_h460_9_jitterBufferParms,
      { "jitterBufferParms", "h460.9.jitterBufferParms_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_gmin,
      { "gmin", "h460.9.gmin",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_9_burstLossDensity,
      { "burstLossDensity", "h460.9.burstLossDensity",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_9_gapLossDensity,
      { "gapLossDensity", "h460.9.gapLossDensity",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_9_burstDuration,
      { "burstDuration", "h460.9.burstDuration",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_gapDuration,
      { "gapDuration", "h460.9.gapDuration",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_unspecified,
      { "unspecified", "h460.9.unspecified_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_disabled,
      { "disabled", "h460.9.disabled_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_enhanced,
      { "enhanced", "h460.9.enhanced_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_standard,
      { "standard", "h460.9.standard_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_jitterBufferType,
      { "jitterBufferType", "h460.9.jitterBufferType",
        FT_UINT32, BASE_DEC, VALS(h460_9_JitterBufferTypes_vals), 0,
        "JitterBufferTypes", HFILL }},
    { &hf_h460_9_jitterBufferAdaptRate,
      { "jitterBufferAdaptRate", "h460.9.jitterBufferAdaptRate",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_15", HFILL }},
    { &hf_h460_9_jitterBufferNominalSize,
      { "jitterBufferNominalSize", "h460.9.jitterBufferNominalSize",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_jitterBufferMaxSize,
      { "jitterBufferMaxSize", "h460.9.jitterBufferMaxSize",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_jitterBufferAbsoluteMax,
      { "jitterBufferAbsoluteMax", "h460.9.jitterBufferAbsoluteMax",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_65535", HFILL }},
    { &hf_h460_9_unknown,
      { "unknown", "h460.9.unknown_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_reserved,
      { "reserved", "h460.9.reserved_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_nonadaptive,
      { "nonadaptive", "h460.9.nonadaptive_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_9_adaptive,
      { "adaptive", "h460.9.adaptive_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},

/* --- Module CALL-PARTY-CATEGORY --- --- ---                                 */

    { &hf_h460_10_h460_10_CallPartyCategoryInfo_PDU,
      { "CallPartyCategoryInfo", "h460.10.CallPartyCategoryInfo_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_10_callPartyCategory,
      { "callPartyCategory", "h460.10.callPartyCategory",
        FT_UINT32, BASE_DEC, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_10_originatingLineInfo,
      { "originatingLineInfo", "h460.10.originatingLineInfo",
        FT_UINT32, BASE_DEC, NULL, 0,
        NULL, HFILL }},

/* --- Module MLPP --- --- ---                                                */

    { &hf_h460_14_h460_14_MLPPInfo_PDU,
      { "MLPPInfo", "h460.14.MLPPInfo_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_14_precedence,
      { "precedence", "h460.14.precedence",
        FT_UINT32, BASE_DEC, VALS(h460_14_MlppPrecedence_vals), 0,
        "MlppPrecedence", HFILL }},
    { &hf_h460_14_mlppReason,
      { "mlppReason", "h460.14.mlppReason",
        FT_UINT32, BASE_DEC, VALS(h460_14_MlppReason_vals), 0,
        NULL, HFILL }},
    { &hf_h460_14_mlppNotification,
      { "mlppNotification", "h460.14.mlppNotification",
        FT_UINT32, BASE_DEC, VALS(h460_14_MlppNotification_vals), 0,
        NULL, HFILL }},
    { &hf_h460_14_alternateParty,
      { "alternateParty", "h460.14.alternateParty_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_14_releaseCall,
      { "releaseCall", "h460.14.releaseCall_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_14_preemptionPending,
      { "preemptionPending", "h460.14.preemptionPending_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_14_preemptionInProgress,
      { "preemptionInProgress", "h460.14.preemptionInProgress_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_14_preemptionEnd,
      { "preemptionEnd", "h460.14.preemptionEnd_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_14_preemptionComplete,
      { "preemptionComplete", "h460.14.preemptionComplete_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_14_altID,
      { "altID", "h460.14.altID",
        FT_UINT32, BASE_DEC, VALS(AliasAddress_vals), 0,
        "AliasAddress", HFILL }},
    { &hf_h460_14_altTimer,
      { "altTimer", "h460.14.altTimer",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},
    { &hf_h460_14_preemptCallID,
      { "preemptCallID", "h460.14.preemptCallID_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "CallIdentifier", HFILL }},
    { &hf_h460_14_releaseReason,
      { "releaseReason", "h460.14.releaseReason",
        FT_UINT32, BASE_DEC, VALS(h460_14_MlppReason_vals), 0,
        "MlppReason", HFILL }},
    { &hf_h460_14_releaseDelay,
      { "releaseDelay", "h460.14.releaseDelay",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_255", HFILL }},

/* --- Module SIGNALLING-CHANNEL-SUSPEND-REDIRECT --- --- ---                 */

    { &hf_h460_15_h460_15_SignallingChannelData_PDU,
      { "SignallingChannelData", "h460.15.SignallingChannelData_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_signallingChannelData,
      { "signallingChannelData", "h460.15.signallingChannelData",
        FT_UINT32, BASE_DEC, VALS(h460_15_T_signallingChannelData_vals), 0,
        NULL, HFILL }},
    { &hf_h460_15_channelSuspendRequest,
      { "channelSuspendRequest", "h460.15.channelSuspendRequest_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_channelSuspendResponse,
      { "channelSuspendResponse", "h460.15.channelSuspendResponse_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_channelSuspendConfirm,
      { "channelSuspendConfirm", "h460.15.channelSuspendConfirm_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_channelSuspendCancel,
      { "channelSuspendCancel", "h460.15.channelSuspendCancel_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_channelResumeRequest,
      { "channelResumeRequest", "h460.15.channelResumeRequest_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_channelResumeResponse,
      { "channelResumeResponse", "h460.15.channelResumeResponse_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_channelResumeAddress,
      { "channelResumeAddress", "h460.15.channelResumeAddress",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_OF_TransportAddress", HFILL }},
    { &hf_h460_15_channelResumeAddress_item,
      { "TransportAddress", "h460.15.TransportAddress",
        FT_UINT32, BASE_DEC, VALS(h225_TransportAddress_vals), 0,
        NULL, HFILL }},
    { &hf_h460_15_immediateResume,
      { "immediateResume", "h460.15.immediateResume",
        FT_BOOLEAN, BASE_NONE, NULL, 0,
        "BOOLEAN", HFILL }},
    { &hf_h460_15_resetH245,
      { "resetH245", "h460.15.resetH245_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_15_okToSuspend,
      { "okToSuspend", "h460.15.okToSuspend",
        FT_BOOLEAN, BASE_NONE, NULL, 0,
        "BOOLEAN", HFILL }},
    { &hf_h460_15_randomNumber,
      { "randomNumber", "h460.15.randomNumber",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_4294967295", HFILL }},

/* --- Module SIGNALLING-TRAVERSAL --- --- ---                                */

    { &hf_h460_18_h460_18_IncomingCallIndication_PDU,
      { "IncomingCallIndication", "h460.18.IncomingCallIndication_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_18_h460_18_LRQKeepAliveData_PDU,
      { "LRQKeepAliveData", "h460.18.LRQKeepAliveData_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_18_callSignallingAddress,
      { "callSignallingAddress", "h460.18.callSignallingAddress",
        FT_UINT32, BASE_DEC, VALS(h225_TransportAddress_vals), 0,
        "TransportAddress", HFILL }},
    { &hf_h460_18_callID,
      { "callID", "h460.18.callID_element",
        FT_NONE, BASE_NONE, NULL, 0,
        "CallIdentifier", HFILL }},
    { &hf_h460_18_lrqKeepAliveInterval,
      { "lrqKeepAliveInterval", "h460.18.lrqKeepAliveInterval",
        FT_UINT32, BASE_DEC, NULL, 0,
        "TimeToLive", HFILL }},

/* --- Module MEDIA-TRAVERSAL --- --- ---                                     */

    { &hf_h460_19_h460_19_TraversalParameters_PDU,
      { "TraversalParameters", "h460.19.TraversalParameters_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_19_multiplexedMediaChannel,
      { "multiplexedMediaChannel", "h460.19.multiplexedMediaChannel",
        FT_UINT32, BASE_DEC, VALS(h245_TransportAddress_vals), 0,
        "TransportAddress", HFILL }},
    { &hf_h460_19_multiplexedMediaControlChannel,
      { "multiplexedMediaControlChannel", "h460.19.multiplexedMediaControlChannel",
        FT_UINT32, BASE_DEC, VALS(h245_TransportAddress_vals), 0,
        "TransportAddress", HFILL }},
    { &hf_h460_19_multiplexID,
      { "multiplexID", "h460.19.multiplexID",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_4294967295", HFILL }},
    { &hf_h460_19_keepAliveChannel,
      { "keepAliveChannel", "h460.19.keepAliveChannel",
        FT_UINT32, BASE_DEC, VALS(h245_TransportAddress_vals), 0,
        "TransportAddress", HFILL }},
    { &hf_h460_19_keepAlivePayloadType,
      { "keepAlivePayloadType", "h460.19.keepAlivePayloadType",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_0_127", HFILL }},
    { &hf_h460_19_keepAliveInterval,
      { "keepAliveInterval", "h460.19.keepAliveInterval",
        FT_UINT32, BASE_DEC, NULL, 0,
        "TimeToLive", HFILL }},

/* --- Module MESSAGE-BROADCAST --- --- ---                                   */

    { &hf_h460_21_h460_21_CapabilityAdvertisement_PDU,
      { "CapabilityAdvertisement", "h460.21.CapabilityAdvertisement_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_21_receiveCapabilities,
      { "receiveCapabilities", "h460.21.receiveCapabilities_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_21_transmitCapabilities,
      { "transmitCapabilities", "h460.21.transmitCapabilities",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_SIZE_1_256_OF_TransmitCapabilities", HFILL }},
    { &hf_h460_21_transmitCapabilities_item,
      { "TransmitCapabilities", "h460.21.TransmitCapabilities_element",
        FT_NONE, BASE_NONE, NULL, 0,
        NULL, HFILL }},
    { &hf_h460_21_capabilities,
      { "capabilities", "h460.21.capabilities",
        FT_UINT32, BASE_DEC, NULL, 0,
        "SEQUENCE_SIZE_1_256_OF_Capability", HFILL }},
    { &hf_h460_21_capabilities_item,
      { "Capability", "h460.21.Capability",
        FT_UINT32, BASE_DEC, VALS(h245_Capability_vals), 0,
        NULL, HFILL }},
    { &hf_h460_21_maxGroups,
      { "maxGroups", "h460.21.maxGroups",
        FT_UINT32, BASE_DEC, NULL, 0,
        "INTEGER_1_65535", HFILL }},
    { &hf_h460_21_groupIdentifer,
      { "groupIdentifer", "h460.21.groupIdentifer",
        FT_BYTES, BASE_NONE, NULL, 0,
        "GloballyUniqueID", HFILL }},
    { &hf_h460_21_capability,
      { "capability", "h460.21.capability",
        FT_UINT32, BASE_DEC, VALS(h245_Capability_vals), 0,
        NULL, HFILL }},
    { &hf_h460_21_sourceAddress,
      { "sourceAddress", "h460.21.sourceAddress",
        FT_UINT32, BASE_DEC, VALS(h245_UnicastAddress_vals), 0,
        "UnicastAddress", HFILL }},
  };

  /* List of subtrees */
  static gint *ett[] = {

/* --- Module NUMBER-PORTABILITY --- --- ---                                  */

    &ett_h460_2_NumberPortabilityInfo,
    &ett_h460_2_T_nUMBERPORTABILITYDATA,
    &ett_h460_2_NumberPortabilityRejectReason,
    &ett_h460_2_PortabilityAddress,
    &ett_h460_2_NumberPortabilityTypeOfNumber,
    &ett_h460_2_PortabilityTypeOfNumber,
    &ett_h460_2_RegionalParameters,

/* --- Module CIRCUIT-STATUS-MAP --- --- ---                                  */

    &ett_h460_3_CircuitStatus,
    &ett_h460_3_SEQUENCE_OF_CircuitStatusMap,
    &ett_h460_3_CircuitStatusMap,
    &ett_h460_3_CircuitStatusType,

/* --- Module CALL-PRIORITY --- --- ---                                       */

    &ett_h460_4_CallPriorityInfo,
    &ett_h460_4_T_priorityValue,
    &ett_h460_4_SEQUENCE_OF_ClearToken,
    &ett_h460_4_SEQUENCE_OF_CryptoToken,
    &ett_h460_4_T_rejectReason,
    &ett_h460_4_CountryInternationalNetworkCallOriginationIdentification,
    &ett_h460_4_T_numberingPlan,
    &ett_h460_4_T_x121,
    &ett_h460_4_T_e164,

/* --- Modules QOS-MONITORING-REPORT QOS-MONITORING-EXTENDED-VOIP-REPORT --- --- --- */

    &ett_h460_9_Extension,
    &ett_h460_9_RTCPMeasures,
    &ett_h460_9_T_mediaSenderMeasures,
    &ett_h460_9_T_mediaReceiverMeasures,
    &ett_h460_9_SEQUENCE_OF_Extension,
    &ett_h460_9_PerCallQoSReport,
    &ett_h460_9_SEQUENCE_OF_RTCPMeasures,
    &ett_h460_9_QosMonitoringReportData,
    &ett_h460_9_PeriodicQoSMonReport,
    &ett_h460_9_SEQUENCE_OF_PerCallQoSReport,
    &ett_h460_9_FinalQosMonReport,
    &ett_h460_9_InterGKQosMonReport,
    &ett_h460_9_ExtendedRTPMetrics,
    &ett_h460_9_BurstMetrics,
    &ett_h460_9_PLCtypes,
    &ett_h460_9_JitterBufferParms,
    &ett_h460_9_JitterBufferTypes,

/* --- Module CALL-PARTY-CATEGORY --- --- ---                                 */

    &ett_h460_10_CallPartyCategoryInfo,

/* --- Module MLPP --- --- ---                                                */

    &ett_h460_14_MLPPInfo,
    &ett_h460_14_MlppNotification,
    &ett_h460_14_AlternateParty,
    &ett_h460_14_ReleaseCall,

/* --- Module SIGNALLING-CHANNEL-SUSPEND-REDIRECT --- --- ---                 */

    &ett_h460_15_SignallingChannelData,
    &ett_h460_15_T_signallingChannelData,
    &ett_h460_15_ChannelSuspendRequest,
    &ett_h460_15_SEQUENCE_OF_TransportAddress,
    &ett_h460_15_ChannelSuspendResponse,
    &ett_h460_15_ChannelSuspendConfirm,
    &ett_h460_15_ChannelSuspendCancel,
    &ett_h460_15_ChannelResumeRequest,
    &ett_h460_15_ChannelResumeResponse,

/* --- Module SIGNALLING-TRAVERSAL --- --- ---                                */

    &ett_h460_18_IncomingCallIndication,
    &ett_h460_18_LRQKeepAliveData,

/* --- Module MEDIA-TRAVERSAL --- --- ---                                     */

    &ett_h460_19_TraversalParameters,

/* --- Module MESSAGE-BROADCAST --- --- ---                                   */

    &ett_h460_21_CapabilityAdvertisement,
    &ett_h460_21_SEQUENCE_SIZE_1_256_OF_TransmitCapabilities,
    &ett_h460_21_ReceiveCapabilities,
    &ett_h460_21_SEQUENCE_SIZE_1_256_OF_Capability,
    &ett_h460_21_TransmitCapabilities,
  };

  /* Register protocol */
  proto_h460 = proto_register_protocol(PNAME, PSNAME, PFNAME);

  /* Register fields and subtrees */
  proto_register_field_array(proto_h460, hf, array_length(hf));
  proto_register_subtree_array(ett, array_length(ett));

  for (ftr=h460_feature_tab; ftr->id; ftr++) {
    if (ftr->opt & GD) ftr->key_gd = wmem_strdup_printf(wmem_epan_scope(), "GenericData/%s", ftr->id);
    if (ftr->opt & FD) ftr->key_fd = wmem_strdup_printf(wmem_epan_scope(), "FeatureDescriptor/%s", ftr->id);
    if (ftr->opt & GM) ftr->key_gm = wmem_strdup_printf(wmem_epan_scope(), "GenericMessage/%s", ftr->id);
    if (ftr->opt & GI) ftr->key_gi = wmem_strdup_printf(wmem_epan_scope(), "GenericInformation/%s", ftr->id);
    if (ftr->content_pdu) ftr->content_hnd = create_dissector_handle(ftr->content_pdu, proto_h460);
  }
}

/*--- proto_reg_handoff_h460 -------------------------------------------*/
void proto_reg_handoff_h460(void)
{
  h460_feature_t *ftr;
  dissector_handle_t h460_name_handle;

  q931_ie_handle = find_dissector_add_dependency("q931.ie", proto_h460);
  h225_ras_handle = find_dissector_add_dependency("h225.ras", proto_h460);

  h460_name_handle = create_dissector_handle(dissect_h460_name, proto_h460);
  for (ftr=h460_feature_tab; ftr->id; ftr++) {
    if (ftr->key_gd) dissector_add_string("h225.gef.name", ftr->key_gd, h460_name_handle);
    if (ftr->key_fd) dissector_add_string("h225.gef.name", ftr->key_fd, h460_name_handle);
    if (ftr->key_gm) dissector_add_string("h245.gef.name", ftr->key_gm, h460_name_handle);
    if (ftr->key_gi) dissector_add_string("h245.gef.name", ftr->key_gi, h460_name_handle);
    if (ftr->content_hnd) {
      if (ftr->key_gd) dissector_add_string("h225.gef.content", ftr->key_gd, ftr->content_hnd);
      if (ftr->key_fd) dissector_add_string("h225.gef.content", ftr->key_fd, ftr->content_hnd);
      if (ftr->key_gm) dissector_add_string("h245.gef.content", ftr->key_gm, ftr->content_hnd);
      if (ftr->key_gi) dissector_add_string("h245.gef.content", ftr->key_gi, ftr->content_hnd);
    }
  }

}