aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-v52.c
blob: abc3be792107f254fa7dd20b491d1a57e04a363d (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
/* packet-v52.c
 * Implementation for V5.2 Interface dissection
 * References:
 * ETSI EN 300 324-1 V2.1.1 (2000-04)
 * ETSI EN 300 347-1 V2.2.2 (1999-12)
 *
 * Copyright 2009
 *
 * ISKRATEL d.o.o.             |       4S d.o.o.
 * http://www.iskratel.si/     |       http://www.4es.si/
 * <info@iskratel.si>          |       <projects@4es.si>
 * Vladimir Smrekar <vladimir.smrekar@gmail.com>
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "config.h"

#include <epan/packet.h>

void proto_register_v52(void);

static int proto_v52                           = -1;
static int hf_v52_discriminator                = -1;

static gint ett_v52                            = -1;
static gint ett_v52_info                       = -1;

/* static int hf_v52_address                      = -1; */
/* static int hf_v52_low_address                  = -1; */

static int hf_v52_msg_type                     = -1;
static int hf_v52_info_element                 = -1;

static int hf_v52_isdn_address                 = -1;
static int hf_v52_isdn_low_address             = -1;
static int hf_v52_pstn_address                 = -1;
static int hf_v52_pstn_low_address             = -1;
static int hf_v52_link_address                 = -1;
static int hf_v52_link_low_address             = -1;
static int hf_v52_bcc_address                  = -1;
static int hf_v52_bcc_low_address              = -1;
static int hf_v52_prot_address                 = -1;
static int hf_v52_prot_low_address             = -1;
/* static int hf_v52_ctrl_address                 = -1; */
/* static int hf_v52_ctrl_low_address             = -1; */
static int hf_v52_cadenced_ring                = -1;
static int hf_v52_pulse_notification           = -1;
static int hf_v52_info_length                  = -1;

/*PSTN Message*/
static int hf_v52_line_info                    = -1;
static int hf_v52_pulse_type                   = -1;
static int hf_v52_suppression_indicator        = -1;
static int hf_v52_pulse_duration               = -1;
static int hf_v52_ack_request_indicator        = -1;
static int hf_v52_number_of_pulses             = -1;
static int hf_v52_steady_signal                = -1;
static int hf_v52_auto_signalling_sequence     = -1;
static int hf_v52_sequence_response            = -1;
static int hf_v52_digit_ack                    = -1;
static int hf_v52_digit_spare                  = -1;
static int hf_v52_digit_info                   = -1;
static int hf_v52_res_unavailable              = -1;
static int hf_v52_state                        = -1;
static int hf_v52_cause_type                   = -1;
static int hf_v52_pstn_sequence_number         = -1;
static int hf_v52_duration_type                = -1;
/*Link control*/
static int hf_v52_link_control_function        = -1;
/*Protection protocol*/
static int hf_v52_rejection_cause              = -1;
static int hf_v52_error_cause                  = -1;
static int hf_v52_diagnostic_msg               = -1;
static int hf_v52_diagnostic_element           = -1;
/*BCC protocol*/
static int hf_v52_pstn_user_port_id            = -1;
static int hf_v52_pstn_user_port_id_lower      = -1;

static int hf_v52_isdn_user_port_id            = -1;
static int hf_v52_isdn_user_port_id_lower      = -1;

static int hf_v52_isdn_user_port_ts_num        = -1;
static int hf_v52_override                     = -1;
static int hf_v52_reject_cause_type            = -1;
static int hf_v52_bcc_protocol_error_cause     = -1;
static int hf_v52_connection_incomplete_reason = -1;

static int hf_v52_diagnostic_message           = -1;
static int hf_v52_diagnostic_information       = -1;

/*Control protocol*/
static int hf_v52_control_function_element     = -1;
static int hf_v52_control_function_id          = -1;
static int hf_v52_variant                      = -1;
static int hf_v52_if_up_id                     = -1;
static int hf_v52_if_id                        = -1;
static int hf_v52_if_low_id                    = -1;
static int hf_v52_if_all_id                    = -1;
static int hf_v52_performance_grading          = -1;
static int hf_v52_cp_rejection_cause           = -1;

static int hf_v52_v5_link_id                   = -1;
static int hf_v52_v5_time_slot                 = -1;
static int hf_v52_sequence_number              = -1;

static int hf_v52_v5_multi_slot_elements       = -1;

static int message_type_tmp                    = -1;

static void
dissect_v52_protocol_discriminator(tvbuff_t *tvb, int offset, proto_tree *tree)
{
    unsigned int discriminator = tvb_get_guint8(tvb, offset);


    if (discriminator == 0x48) {
        proto_tree_add_uint_format_value(tree, hf_v52_discriminator, tvb, offset, 1, discriminator,
            "V5.2 (0x%02X)",
            discriminator);
    } else {
        proto_tree_add_uint_format_value(tree, hf_v52_discriminator,
            tvb, offset, 1, discriminator,
            "Reserved (0x%02X)",
            discriminator);
    }
}

/*============================*/
/*   V52 MESSAGE TYPE START   */
/*============================*/

/* message types of PSTN */
#define ESTABLISH              0x00
#define ESTABLISH_ACK          0x01
#define SIGNAL                 0x02
#define SIGNAL_ACK             0x03
#define DISCONNECT             0x08
#define DISCONNECT_COMPLETE    0x09
#define STATUS_ENQUIRY         0x0c
#define STATUS                 0x0d
#define PROTOCOL_PARAMETER     0x0e
/* message types of Control protocol */
#define PORT_CONTROL           0x10
#define PORT_CONTROL_ACK       0x11
#define COMMON_CONTROL         0x12
#define COMMON_CONTROL_ACK     0x13
/* message types of PROT protocol */
#define SWITCH_OVER_REQ        0x18
#define SWITCH_OVER_COM        0x19
#define OS_SWITCH_OVER_COM     0x1a
#define SWITCH_OVER_ACK        0x1b
#define SWITCH_OVER_REJECT     0x1c
#define PROT_PROTOCOL_ERROR    0x1d
#define RESET_SN_COM           0x1e
#define RESET_SN_ACK           0x1f
/* message types of BCC */
#define ALLOCATION             0x20
#define ALLOCATION_COMPLETE    0x21
#define ALLOCATION_REJECT      0x22
#define DE_ALLOCATION          0x23
#define DE_ALLOCATION_COMPLETE 0x24
#define DE_ALLOCATION_REJECT   0x25
#define AUDIT                  0x26
#define AUDIT_COMPLETE         0x27
#define AN_FAULT               0x28
#define AN_FAULT_ACKNOWLEDGE   0x29
#define BCC_PROTOCOL_ERROR     0x2a
/* message types of Link Control protocol */
#define LINK_CONTROL           0x30
#define LINK_CONTROL_ACK       0x31

static const value_string msg_type_values [] = {
    { ESTABLISH,              "Establish" },
    { ESTABLISH_ACK,          "Establish Ack" },
    { SIGNAL,                 "Signal" },
    { SIGNAL_ACK,             "Signal Ack" },
    { DISCONNECT,             "Disconnect" },
    { DISCONNECT_COMPLETE,    "Disconnect Complete" },
    { STATUS_ENQUIRY,         "Status Enqury" },
    { STATUS,                 "Status" },
    { PROTOCOL_PARAMETER,     "Protocol Parameter" },
    { PORT_CONTROL,           "Port Control" },
    { PORT_CONTROL_ACK,       "Port Control Ack" },
    { COMMON_CONTROL,         "Common Control" },
    { COMMON_CONTROL_ACK,     "Common Control Ack" },
    { SWITCH_OVER_REQ,        "Switch-Over Request" },
    { SWITCH_OVER_COM,        "Switch-Over Com" },
    { OS_SWITCH_OVER_COM,     "OS-Switch-Over Com" },
    { SWITCH_OVER_ACK,        "Switch-Over Ack" },
    { SWITCH_OVER_REJECT,     "Switch-Over Reject" },
    { PROT_PROTOCOL_ERROR,    "Protocol Error" },
    { RESET_SN_COM,           "Reset SN Com" },
    { RESET_SN_ACK,           "Reset SN Ack" },
    { ALLOCATION,             "Allocation" },
    { ALLOCATION_COMPLETE,    "Allocation Complete" },
    { ALLOCATION_REJECT,      "Allocation Reject" },
    { DE_ALLOCATION,          "DE Allocation" },
    { DE_ALLOCATION_COMPLETE, "DE Allocation Complete" },
    { DE_ALLOCATION_REJECT,   "DE Allocation Reject" },
    { AUDIT,                  "Audit" },
    { AUDIT_COMPLETE,         "Audit Complete" },
    { AN_FAULT,               "AN Fault" },
    { AN_FAULT_ACKNOWLEDGE,   "AN Fault Ack" },
    { BCC_PROTOCOL_ERROR,     "Protocol Error" },
    { LINK_CONTROL,           "Link Control" },
    { LINK_CONTROL_ACK,       "Link Control Ack" },
    { 0,                     NULL } };
static value_string_ext msg_type_values_ext = VALUE_STRING_EXT_INIT(msg_type_values);

/* SHORT */
static const value_string msg_type_values_short [] = {
    { ESTABLISH,              "Establish" },
    { ESTABLISH_ACK,          "Establish Ack" },
    { SIGNAL,                 "Signal" },
    { SIGNAL_ACK,             "Signal Ack" },
    { DISCONNECT,             "Disconnect" },
    { DISCONNECT_COMPLETE,    "Disconnect Com" },
    { STATUS_ENQUIRY,         "Status Enq" },
    { STATUS,                 "Status" },
    { PROTOCOL_PARAMETER,     "Prot Para" },
    { PORT_CONTROL,           "PortCtrl" },
    { PORT_CONTROL_ACK,       "PortCtrl Ack" },
    { COMMON_CONTROL,         "CCtrl" },
    { COMMON_CONTROL_ACK,     "CCtrl Ack" },
    { SWITCH_OVER_REQ,        "SO Req" },
    { SWITCH_OVER_COM,        "SO Com" },
    { OS_SWITCH_OVER_COM,     "OS SO Com" },
    { SWITCH_OVER_ACK,        "SO Ack" },
    { SWITCH_OVER_REJECT,     "SO Rej" },
    { PROT_PROTOCOL_ERROR,    "Prot Err" },
    { RESET_SN_COM,           "Res SN Com" },
    { RESET_SN_ACK,           "Res SN Ack" },
    { ALLOCATION,             "BCC Alloc" },
    { ALLOCATION_COMPLETE,    "BCC Alloc Comp" },
    { ALLOCATION_REJECT,      "BCC Allo Rej" },
    { DE_ALLOCATION,          "BCC DE-Alloc" },
    { DE_ALLOCATION_COMPLETE, "BCC DE-Alloc Comp" },
    { DE_ALLOCATION_REJECT,   "BCC DE-Alloc Rej" },
    { AUDIT,                  "BCC Audit" },
    { AUDIT_COMPLETE,         "BCC Audit Comp" },
    { AN_FAULT,               "BCC AN Fault" },
    { AN_FAULT_ACKNOWLEDGE,   "BCC AN Fault Ack" },
    { BCC_PROTOCOL_ERROR,     "BCC Prot Error" },
    { LINK_CONTROL,           "LinkCtrl" },
    { LINK_CONTROL_ACK,       "LinkCtrl Ack" },
    { 0,                     NULL } };
static value_string_ext msg_type_values_short_ext = VALUE_STRING_EXT_INIT(msg_type_values_short);

static const value_string pulse_type_values [] = {
    { 0xeb, "Pulsed b-wire disconnected" },
    { 0xec, "Pulsed a-wire disconnected" },
    { 0xed, "Pulsed normal battery" },
    { 0xee, "Pulsed c-wire disconnected" },
    { 0xef, "Pulsed c-wire connected to earth" },
    { 0xf0, "Pulsed a-wire connected to battery" },
    { 0xf1, "Pulsed a-wire connected to earth" },
    { 0xf2, "Pulsed b-wire connected to battery" },
    { 0xf3, "Earth loop pulse" },
    { 0xf4, "Pulsed b-wire connected to earth" },
    { 0xf5, "Pulsed off hook (pulsed loop closed)" },
    { 0xf6, "Register recall (timed loop open)" },
    { 0xf7, "50 Hz pulse" },
    { 0xf8, "Meter pulse" },
    { 0xf9, "Initial ring" },
    { 0xfa, "Pulsed no battery" },
    { 0xfb, "Pulsed reduced battery" },
    { 0xfc, "Pulsed on hook" },
    { 0xfd, "Pulsed battery on c-wire" },
    { 0xfe, "Pulsed reversed polarity" },
    { 0xff, "Pulsed normal polarity" },
    { 0,    NULL } };
static value_string_ext pulse_type_values_ext = VALUE_STRING_EXT_INIT(pulse_type_values);

static const value_string suppression_indication_values [] = {
    { 0x0, "No suppression" },
    { 0x1, "Suppression allowed by pre-defined V5.1 SIGNAL msg from LE" },
    { 0x2, "Suppression allowed by pre-defined line signal from TE" },
    { 0x3, "Suppression allowed by pre-defined V5.1 SIGNAL msg from LE or line signal from TE" },
    { 0,   NULL } };

static const value_string ack_request_indication_values [] = {
    { 0x0, "No acknowledgement requested" },
    { 0x1, "Ending acknowledgement requested when finished each pulses" },
    { 0x2, "Ending acknowledgement requested when finished all pulses" },
    { 0x3, "Start of pulse acknowledgement requested" },
    { 0,   NULL } };

static const value_string steady_signal_values [] = {
    { 0x00, "Normal polarity" },
    { 0x01, "Reversed polarity" },
    { 0x02, "Battery on c-wire" },
    { 0x03, "No battery on c-wire" },
    { 0x04, "Off hook (loop closed)" },
    { 0x05, "On hook (loop open)" },
    { 0x06, "Battery on a-wire" },
    { 0x07, "A-wire on earth" },
    { 0x08, "No battery on a-wire" },
    { 0x09, "No battery on b-wire" },
    { 0x0a, "Reduced battery" },
    { 0x0b, "No battery" },
    { 0x0c, "Alternate reduced power / no power" },
    { 0x0d, "Normal battery" },
    { 0x0e, "Stop ringing" },
    { 0x0f, "Start pilot frequency" },
    { 0x10, "Stop pilot frequency" },
    { 0x11, "Low impedance on b-wire" },
    { 0x12, "B-wire connected to earth" },
    { 0x13, "B-wire disconnected from earth" },
    { 0x14, "Battery on b-wire" },
    { 0x15, "Low loop impedance" },
    { 0x16, "High loop impedance" },
    { 0x17, "Anomalous loop impedance" },
    { 0x18, "A-wire disconnected from earth" },
    { 0x19, "C-wire on earth" },
    { 0x1a, "C-wire disconnected from earth" },
    { 0x1d, "Ramp to reverse polarity" },
    { 0x1e, "Ramp to normal polarity" },
    { 0,    NULL } };
static value_string_ext steady_signal_values_ext = VALUE_STRING_EXT_INIT(steady_signal_values);

static const true_false_string tfs_digit_ack_values = {
    "Ending acknowledgement requested when digit transmission is finished",
    "No ending acknowledgement requested" };

static const value_string line_info_values [] = {
    { 0x00, "Impedance marker reset" },
    { 0x01, "Impedance marker set" },
    { 0x02, "Low loop impedance" },
    { 0x03, "Anomalous loop impedance" },
    { 0x04, "Anomalous line condition received"},
    { 0,    NULL } };

static const value_string state_values [] = {
    { 0x00, "AN0" },
    { 0x01, "AN1" },
    { 0x02, "AN2" },
    { 0x03, "AN3" },
    { 0x04, "AN4" },
    { 0x05, "AN5" },
    { 0x06, "AN6" },
    { 0x07, "AN7" },
    { 0x0f, "Not applicable" },
    { 0,    NULL } };

static const value_string control_function_element_values [] = {
    { 0x01, "FE101 (activate access)" },
    { 0x02, "FE102 (activation initiated by user)" },
    { 0x03, "FE103 (DS activated)" },
    { 0x04, "FE104 (access activated)" },
    { 0x05, "FE105 (deactivate access)" },
    { 0x06, "FE106 (access deactivated)" },
    { 0x11, "FE201/202 (unblock)" },
    { 0x13, "FE203/204 (block)" },
    { 0x15, "FE205 (block request)" },
    { 0x16, "FE206 (performance grading)" },
    { 0x17, "FE207 (D-channel block)" },
    { 0x18, "FE208 (D-channel unblock)" },
    { 0x19, "FE209 (TE out of service)" },
    { 0x1A, "FE210 (failure inside network)" },
    { 0,    NULL } };

static const value_string control_function_id_values [] = {
    { 0x00, "Verify re-provisioning" },
    { 0x01, "Ready for re-provisioning" },
    { 0x02, "Not ready for re-provisioning" },
    { 0x03, "Switch-over to new variant" },
    { 0x04, "Re-provisioning started" },
    { 0x05, "Cannot re-provision" },
    { 0x06, "Request variant and interface ID" },
    { 0x07, "Variant and interface ID" },
    { 0x08, "Blocking started" },
    { 0x10, "Restart request" },
    { 0x11, "Restart complete" },
    { 0x12, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS REQUEST" },
    { 0x13, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS ACCEPTED" },
    { 0x14, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS REJECTED" },
    { 0x15, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS COMPLETED" },
    { 0x16, "UNBLOCK ALL RELEVANT PSTN PORTS REQUEST" },
    { 0x17, "UNBLOCK ALL RELEVANT PSTN PORTS ACCEPTED" },
    { 0x18, "UNBLOCK ALL RELEVANT PSTN PORTS REJECTED" },
    { 0x19, "UNBLOCK ALL RELEVANT PSTN PORTS COMPLETED" },
    { 0x1a, "UNBLOCK ALL RELEVANT ISDN PORTS REQUEST" },
    { 0x1b, "UNBLOCK ALL RELEVANT ISDN PORTS ACCEPTED" },
    { 0x1c, "UNBLOCK ALL RELEVANT ISDN PORTS REJECTED" },
    { 0x1d, "UNBLOCK ALL RELEVANT ISDN PORTS COMPLETED" },
    { 0x1e, "BLOCK ALL PSTN PORTS REQUEST" },
    { 0x1f, "BLOCK ALL PSTN PORTS ACCEPTED" },
    { 0x20, "BLOCK ALL PSTN PORTS REJECTED" },
    { 0x21, "BLOCK ALL PSTN PORTS COMPLETED" },
    { 0x22, "BLOCK ALL ISDN PORTS REQUEST" },
    { 0x23, "BLOCK ALL ISDN PORTS ACCEPTED" },
    { 0x24, "BLOCK ALL ISDN PORTS REJECTED" },
    { 0x25, "BLOCK ALL ISDN PORTS COMPLETED" },
    { 0,    NULL } };
static value_string_ext control_function_id_values_ext = VALUE_STRING_EXT_INIT(control_function_id_values);

static const value_string control_function_id_values_short [] = {
    { 0x00, "VerifyRe-pro" },
    { 0x01, "ReadyForRe-pro" },
    { 0x02, "NotReadyForRe-pro" },
    { 0x03, "SO ToNewVar" },
    { 0x04, "Re-pro Started" },
    { 0x05, "CannotRe-pro" },
    { 0x06, "ReqVar & intf ID" },
    { 0x07, "Var & intf ID" },
    { 0x08, "BlockStarted" },
    { 0x10, "RestartReq" },
    { 0x11, "RestartCompl" },
    { 0x12, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS REQUEST" },
    { 0x13, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS ACCEPTED" },
    { 0x14, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS REJECTED" },
    { 0x15, "UNBLOCK ALL RELEVANT PSTN AND ISDN PORTS COMPLETED" },
    { 0x16, "UNBLOCK ALL RELEVANT PSTN PORTS REQUEST" },
    { 0x17, "UNBLOCK ALL RELEVANT PSTN PORTS ACCEPTED" },
    { 0x18, "UNBLOCK ALL RELEVANT PSTN PORTS REJECTED" },
    { 0x19, "UNBLOCK ALL RELEVANT PSTN PORTS COMPLETED" },
    { 0x1a, "UNBLOCK ALL RELEVANT ISDN PORTS REQUEST" },
    { 0x1b, "UNBLOCK ALL RELEVANT ISDN PORTS ACCEPTED" },
    { 0x1c, "UNBLOCK ALL RELEVANT ISDN PORTS REJECTED" },
    { 0x1d, "UNBLOCK ALL RELEVANT ISDN PORTS COMPLETED" },
    { 0x1e, "BLOCK ALL PSTN PORTS REQUEST" },
    { 0x1f, "BLOCK ALL PSTN PORTS ACCEPTED" },
    { 0x20, "BLOCK ALL PSTN PORTS REJECTED" },
    { 0x21, "BLOCK ALL PSTN PORTS COMPLETED" },
    { 0x22, "BLOCK ALL ISDN PORTS REQUEST" },
    { 0x23, "BLOCK ALL ISDN PORTS ACCEPTED" },
    { 0x24, "BLOCK ALL ISDN PORTS REJECTED" },
    { 0x25, "BLOCK ALL ISDN PORTS COMPLETED" },
    { 0,    NULL } };
static value_string_ext control_function_id_values_short_ext = VALUE_STRING_EXT_INIT(control_function_id_values_short);

static const value_string rejection_cause_values [] = {
    { 0x00, "No standby C-channel available" },
    { 0x01, "Target physical C-channel not operational" },
    { 0x02, "Target physical C-channel not provisioned" },
    { 0x03, "Protection switching impossible (AN/LE failure)" },
    { 0x04, "Protection group mismatch" },
    { 0x05, "Requested allocation exists already" },
    { 0x06, "Target physical C-channel already has logical C-channel" },
    { 0,    NULL } };

static const value_string error_cause_values [] = {
    { 0x01, "Protocol discriminator error" },
    { 0x04, "Message type unrecognized" },
    { 0x07, "Mandatory information element missing" },
    { 0x08, "Unrecognized information element" },
    { 0x09, "Mandatory information element content error" },
    { 0x0b, "Message not compatible with protection protocol state" },
    { 0x0c, "Repeated mandatory information element" },
    { 0x0d, "Too many information elements" },
    { 0x0f, "Logical C-Channel identification error" },
    { 0,    NULL } };

static const value_string performance_grading_values [] = {
    { 0x00, "normal grade" },
    { 0x01, "degraded" },
    { 0,    NULL } };

static const value_string cp_rejection_cause_values [] = {
    { 0x00, "variant unknown" },
    { 0x01, "variant known, not ready" },
    { 0x02, "re-provisioning in progress (re-pro)" },
    { 0,    NULL } };

static const value_string reject_cause_type_values [] = {
    { 0x00, "Unspecified" },
    { 0x01, "Access network fault" },
    { 0x02, "Access network blocked (internally)" },
    { 0x03, "Connection already present at the PSTN user port to a different V5 time slot" },
    { 0x04, "Connection already present at the V5 time slot(s) to a different port or ISDN user port time slot(s)" },
    { 0x05, "Connection already present at the ISDN user port time slot(s) to a different V5 time slot(s)" },
    { 0x06, "User port unavailable (blocked)" },
    { 0x07, "De-allocation cannot completeddue to incompatible data content" },
    { 0x08, "De-allocation cannot completeddue to V5 time slot(s) data incompatibility" },
    { 0x09, "De-allocation cannot completeddue to port data incompatibility" },
    { 0x0a, "De-allocation cannot completeddue to user port time slot(s) data incompatibility" },
    { 0x0b, "User port not provisioned" },
    { 0x0c, "Invalid V5 time slot(s) indication(s)" },
    { 0x0d, "Invalid V5 2048 kbit/s link indication" },
    { 0x0e, "Invalid user time slot(s) indication(s)" },
    { 0x0f, "V5 time slot(s) being used as physikal C-channel(s)" },
    { 0x10, "V5 link unavailable (blocked)" },
    { 0,    NULL } };

static const value_string bcc_protocol_error_cause_type_values [] = {
    { 0x01, "Protocol discriminator error" },
    { 0x04, "Message type unrecognized" },
    { 0x05, "Out of sequence information element" },
    { 0x06, "Repeated optional information element" },
    { 0x07, "Mandatory information element missing" },
    { 0x08, "Unrecognized information element" },
    { 0x09, "Mandatory information element content error" },
    { 0x0a, "Optional information element content error" },
    { 0x0b, "Message not compatible with the BCC protocol state" },
    { 0x0c, "Repeated mandatory information element" },
    { 0x0d, "Too many information element" },
    { 0x0f, "BCC Reference Number coding error" },
    { 0,    NULL } };

static const value_string connection_incomplete_reason_values [] = {
    { 0x00, "Incomplete normal" },
    { 0x01, "Access network fault" },
    { 0x02, "User port not provisioned" },
    { 0x03, "Invalid V5 time slot identification" },
    { 0x04, "Invalid V5 2048 kbit/s link identification" },
    { 0x05, "Time slot being used as physical C-channel" },
    { 0,    NULL } };

static const value_string link_control_function_values [] = {
    { 0x00, "FE-IDReq" },
    { 0x01, "FE-IDAck" },
    { 0x02, "FE-IDRel" },
    { 0x03, "FE-IDRej" },
    { 0x04, "FE301/302 (link unblock)" },
    { 0x05, "FE303/304 (link block)" },
    { 0x06, "FE305 (deferred link block request" },
    { 0x07, "FE306 (non-deferred link block request)" },
    { 0,    NULL } };

static const value_string cause_type_values [] = {
    { 0x00, "Response to STATUS ENQUIRY" },
    { 0x01, "Not used" },
    { 0x03, "L3 address error" },
    { 0x04, "Message type unrecognized" },
    { 0x05, "Out of sequence information element" },
    { 0x06, "Repeated optional information element" },
    { 0x07, "Mandatory information element missing" },
    { 0x08, "Unrecognized information element" },
    { 0x09, "Mandatory information element content error" },
    { 0x0a, "Optional information element content error" },
    { 0x0b, "Message not compatible with path state" },
    { 0x0c, "Repeated mandatory information element" },
    { 0x0d, "Too many information elements" },
    { 0,    NULL } };

/* protocol message info elements */
#define PSTN_SEQUENCE_NUMBER     0x00 /* PSTN */
#define CADENCED_RINGING         0x01 /* PSTN */
#define PULSED_SIGNAL            0x02 /* PSTN */
#define STEADY_SIGNAL            0x03 /* PSTN */
#define DIGIT_SIGNAL             0x04 /* PSTN */
#define RECOGNITION_TIME         0x10 /* PSTN */
#define ENABLE_AUTO_ACK          0x11 /* PSTN */
#define DISABLE_AUTO_ACK         0x12 /* PSTN */
#define CAUSE                    0x13 /* PSTN */
#define RESOURCE_UNAVAILABLE     0x14 /* PSTN */
#define CONTROL_FUNCTION_ELEMENT 0x20 /* Control */
#define CONTROL_FUNCTION_ID      0x21 /* Control */
#define ENABLE_METERING          0x22 /* PSTN */
#define VARIANT                  0x22 /* Control */
#define METERING_REPORT          0x23 /* PSTN */
#define INTERFACE_ID             0x23 /* Control */
#define ATTENUATION              0x24 /* PSTN */
#define LINK_CONTROL_FUNCTION    0x30 /* Link Control */
#define USER_PORT_ID             0x40 /* BCC */
#define ISDN_PORT_TS_ID          0x41 /* BCC */
#define V5_TIME_SLOT_ID          0x42 /* BCC */
#define MULTI_SLOT_MAP           0x43 /* BCC */
#define BCC_REJECT_CAUSE         0x44 /* BCC */
#define BCC_PROTOCOL_ERROR_CAUSE 0x45 /* BCC */
#define CONNECTION_INCOMPLETE    0x46 /* BCC */
#define SEQUENCE_NUMBER          0x50 /* Protection */
#define C_CHANNEL_ID             0x51 /* Protection */
#define PP_REJECTION_CAUSE       0x52 /* Protection */
#define PROTOCOL_ERROR           0x53 /* Protection */
#define LINE_INFORMATION         0x80 /* PSTN */
#define STATE                    0x90 /* PSTN */
#define AUTO_SIG_SEQUENCE        0xa0 /* PSTN */
#define SEQUENCE_RESPONSE        0xb0 /* PSTN */
#define PULSE_NOTIFICATION       0xc0 /* PSTN */
#define PERFORMANCE_GRADING      0xe0 /* Control */
#define CP_REJECTION_CAUSE       0xf0 /* Control */

static const value_string info_element_values [] = {
    { PSTN_SEQUENCE_NUMBER,     "Sequence number" },
    { CADENCED_RINGING,         "Cadenced ringing" },
    { PULSED_SIGNAL,            "Pulsed signal" },
    { STEADY_SIGNAL,            "Steady signal" },
    { DIGIT_SIGNAL,             "Digit signal" },
    { RECOGNITION_TIME,         "Recognition time" },
    { ENABLE_AUTO_ACK,          "Enable autonomous acknowledge" },
    { DISABLE_AUTO_ACK,         "Disable autonomous acknowledge" },
    { CAUSE,                    "Cause" },
    { RESOURCE_UNAVAILABLE,     "Resource unavailable" },
    { CONTROL_FUNCTION_ELEMENT, "Control function element" },
    { CONTROL_FUNCTION_ID,      "Control function ID" },
    { ENABLE_METERING,          "Enable metering" },
/*    { VARIANT,                  "Variant" },  XXX - Duplicate value of ENABLE_METERING */
    { METERING_REPORT,          "Metering report" },
/*    { INTERFACE_ID,             "Interface ID" }, XXX - Duplicate value of METERING_REPORT */
    { ATTENUATION,              "Attenuation" },
    { LINK_CONTROL_FUNCTION,    "Link control function" },
    { USER_PORT_ID,             "User port ID" },
    { ISDN_PORT_TS_ID,          "ISDN port TS ID" },
    { V5_TIME_SLOT_ID,          "V5 TS ID" },
    { MULTI_SLOT_MAP,           "Multi-Slot map" },
    { BCC_REJECT_CAUSE,         "Reject cause" },
    { BCC_PROTOCOL_ERROR_CAUSE, "Protocol error cause" },
    { CONNECTION_INCOMPLETE,    "Connection incomplete" },
    { SEQUENCE_NUMBER,          "Sequence number" },
    { C_CHANNEL_ID,             "Physical C-Channel ID" },
    { PP_REJECTION_CAUSE,       "Rejection cause" },
    { PROTOCOL_ERROR,           "Protocol error cause" },
    { LINE_INFORMATION,         "Line information" },
    { STATE,                    "State" },
    { AUTO_SIG_SEQUENCE,        "Autonomous signal sequence" },
    { SEQUENCE_RESPONSE,        "Sequence response" },
    { PULSE_NOTIFICATION,       "Pulse notification" },
    { PERFORMANCE_GRADING,      "Performance grading" },
    { CP_REJECTION_CAUSE,       "Rejection cause" },
    { 0,                       NULL } };
static value_string_ext info_element_values_ext = VALUE_STRING_EXT_INIT(info_element_values);


static const value_string info_element_values_short [] = {
    { PSTN_SEQUENCE_NUMBER,     "SN" },
    { CADENCED_RINGING,         "CR" },
    { PULSED_SIGNAL,            "PS" },
    { STEADY_SIGNAL,            "SS" },
    { DIGIT_SIGNAL,             "DS" },
    { RECOGNITION_TIME,         "RT" },
    { ENABLE_AUTO_ACK,          "EAA" },
    { DISABLE_AUTO_ACK,         "DAA" },
    { CAUSE,                    "CA" },
    { RESOURCE_UNAVAILABLE,     "RU" },
    { CONTROL_FUNCTION_ELEMENT, "CF element" },
    { CONTROL_FUNCTION_ID,      "CF ID" },
    { ENABLE_METERING,          "EM" },
    { VARIANT,                  "Var" },
    { METERING_REPORT,          "MR" },
    { INTERFACE_ID,             "Interface ID" },
    { ATTENUATION,              "ATT" },
    { LINK_CONTROL_FUNCTION,    "LC F" },
    { USER_PORT_ID,             "UP ID" },
    { ISDN_PORT_TS_ID,          "ISDNP TS ID" },
    { V5_TIME_SLOT_ID,          "V5 TS ID" },
    { MULTI_SLOT_MAP,           "MS map" },
    { BCC_REJECT_CAUSE,         "RC" },
    { BCC_PROTOCOL_ERROR_CAUSE, "PEC" },
    { CONNECTION_INCOMPLETE,    "CI" },
    { SEQUENCE_NUMBER,          "SN" },
    { C_CHANNEL_ID,             "Phy CChannel ID" },
    { PP_REJECTION_CAUSE,       "RC" },
    { PROTOCOL_ERROR,           "PEC" },
    { LINE_INFORMATION,         "LI" },
    { STATE,                    "ST" },
    { AUTO_SIG_SEQUENCE,        "ASS" },
    { SEQUENCE_RESPONSE,        "SR" },
    { PULSE_NOTIFICATION,       "PN" },
    { PERFORMANCE_GRADING,      "PG" },
    { CP_REJECTION_CAUSE,       "RC" },
    { 0,                       NULL } };
static value_string_ext info_element_values_short_ext = VALUE_STRING_EXT_INIT(info_element_values_short);


#define ADDRESS_OFFSET       1
#define ADDRESS_LENGTH       1
#define LOW_ADDRESS_OFFSET   2
#define LOW_ADDRESS_LENGTH   1
#define MSG_TYPE_OFFSET      3
#define MSG_TYPE_LENGTH      1
#define INFO_ELEMENT_OFFSET  4
#define INFO_ELEMENT_LENGTH  1


static void
dissect_pstn_sequence_number(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;
    guint8        pstn_sequence_number_tmp;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    pstn_sequence_number_tmp = tvb_get_guint8(info_tvb, info_offset+2)-0x80;
    col_append_fstr(pinfo->cinfo, COL_INFO, " | SN: %u", pstn_sequence_number_tmp);

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_pstn_sequence_number, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_cadenced_ring(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;
    guint8        cadenced_ring_tmp;
    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    cadenced_ring_tmp = tvb_get_guint8(info_tvb, info_offset+2)-0x80;
    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    col_append_fstr(pinfo->cinfo, COL_INFO, ": %u", cadenced_ring_tmp);

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_cadenced_ring, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);


    }
}

static void
dissect_pulsed_signal(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    col_append_str(pinfo->cinfo, COL_INFO, ": ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset+2), &pulse_type_values_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_pulse_type, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);

        if (data_length > 3) {
            proto_tree_add_item(info_tree, hf_v52_suppression_indicator, info_tvb, info_offset+3, 1, ENC_BIG_ENDIAN);
            proto_tree_add_item(info_tree, hf_v52_pulse_duration, info_tvb, info_offset+3, 1, ENC_BIG_ENDIAN);
        }

        if (data_length > 4) {
            proto_tree_add_item(info_tree, hf_v52_ack_request_indicator, info_tvb, info_offset+4, 1, ENC_BIG_ENDIAN);
            proto_tree_add_item(info_tree, hf_v52_number_of_pulses, info_tvb, info_offset+4, 1, ENC_BIG_ENDIAN);
        }
    }
}

static void
dissect_steady_signal(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    col_append_str(pinfo->cinfo, COL_INFO, ": ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, &steady_signal_values_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_steady_signal, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);
    }
}

static void
dissect_digit_signal(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        buffer;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
    proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);

    proto_tree_add_item(info_tree, hf_v52_digit_ack, info_tvb, info_offset+2, 1, ENC_NA);

    buffer = tvb_get_guint8(info_tvb, info_offset+2)>>4;
    buffer = buffer&0x03;

    proto_tree_add_item(info_tree, hf_v52_digit_spare, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    proto_tree_add_item(info_tree, hf_v52_digit_info, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    col_append_fstr(pinfo->cinfo, COL_INFO, ": %u", buffer);
}

static void
dissect_recognition_time(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        guint8 buffer;
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);

        buffer = tvb_get_guint8(info_tvb, info_offset+2)&0x7f;
        /*Signal = Coding of pulse type*/
        if (buffer >= 0x6b)
            proto_tree_add_item(info_tree, hf_v52_pulse_type, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);
        /*Signal = Coding of steady signal type*/
        else if (buffer <= 0x1a)
            proto_tree_add_item(info_tree, hf_v52_steady_signal, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);

        proto_tree_add_item(info_tree, hf_v52_duration_type, info_tvb, info_offset+3, 1, ENC_BIG_ENDIAN);
    }
}

static void
dissect_enable_auto_ack(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        guint8 buffer;
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);

        buffer = tvb_get_guint8(info_tvb, info_offset+2)&0x7f;
        /*Signal*/
        if (buffer >= 0x6b)
            proto_tree_add_item(info_tree, hf_v52_pulse_type, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);
        else if (buffer <= 0x1a)
            proto_tree_add_item(info_tree, hf_v52_steady_signal, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);

        buffer = tvb_get_guint8(info_tvb, info_offset+3)&0x7f;
        /*Response*/
        if (buffer >= 0x6b)
            proto_tree_add_item(info_tree, hf_v52_pulse_type, info_tvb, info_offset+3, 1, ENC_BIG_ENDIAN);
        else if (buffer <= 0x1a)
            proto_tree_add_item(info_tree, hf_v52_steady_signal, info_tvb, info_offset+3, 1, ENC_BIG_ENDIAN);

        if (tvb_reported_length_remaining(info_tvb, info_offset+4)) {
            proto_tree_add_item(info_tree, hf_v52_suppression_indicator, info_tvb, info_offset+4, 1, ENC_BIG_ENDIAN);
            proto_tree_add_item(info_tree, hf_v52_pulse_duration, info_tvb, info_offset+4, 1, ENC_BIG_ENDIAN);
        }
        if (tvb_reported_length_remaining(info_tvb, info_offset+5)) {
            proto_tree_add_item(info_tree, hf_v52_ack_request_indicator, info_tvb, info_offset+5, 1, ENC_BIG_ENDIAN);
            proto_tree_add_item(info_tree, hf_v52_number_of_pulses, info_tvb, info_offset+5, 1, ENC_BIG_ENDIAN);
        }
    }
}

static void
dissect_disable_auto_ack(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        guint8 buffer;
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);

        buffer = tvb_get_guint8(info_tvb, info_offset+2)&0x7f;

        if (buffer >= 0x6b)
            proto_tree_add_item(info_tree, hf_v52_pulse_type, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);
        else if (buffer <= 0x1a)
            proto_tree_add_item(info_tree, hf_v52_steady_signal, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);
    }
}

static void
dissect_cause(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    col_append_str(pinfo->cinfo, COL_INFO, ": ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, cause_type_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_cause_type, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);

        if (tvb_reported_length_remaining(info_tvb, info_offset+3))
            proto_tree_add_uint_format(info_tree, hf_v52_msg_type, info_tvb, info_offset+3, 1, tvb_get_guint8(info_tvb, info_offset+3),
                                "Diagnostic: %s", val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset+3), &msg_type_values_ext, "unknown"));
    }
}

static void
dissect_resource_unavailable(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_res_unavailable, info_tvb, info_offset+2, info_element_length, ENC_ASCII|ENC_NA);
    }
}

static void
dissect_pulse_notification(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = 1;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_pulse_notification, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_line_information(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = 1;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_line_info, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_state(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = 1;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_state, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_auto_sig_sequence(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = 1;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_auto_signalling_sequence, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_sequence_response(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = 1;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    if (info_tree != NULL) {
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_sequence_response, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_control_function_element(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    if (message_type_tmp != 0x11) {
        col_append_str(pinfo->cinfo, COL_INFO, " | ");
        col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, control_function_element_values, "Unknown element"));
    }

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_control_function_element, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_control_function_id(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    if (message_type_tmp != 0x13) {
        col_append_str(pinfo->cinfo, COL_INFO, " | ");
        col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, &control_function_id_values_short_ext, "Unknown layer3 element"));
    }

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_control_function_id, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_variant(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;
    guint8        variantValue;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    variantValue = tvb_get_guint8(info_tvb, info_offset+2)-0x80;
    col_append_fstr(pinfo->cinfo, COL_INFO, " | Var: %u", variantValue);

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_variant, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_interface_id(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;
    guint8        interfaceAllIdValue;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    interfaceAllIdValue = (tvb_get_guint8(info_tvb, info_offset+2)<<16)+(tvb_get_guint8(info_tvb, info_offset+3)<<8)+(tvb_get_guint8(info_tvb, info_offset+4));
    col_append_fstr(pinfo->cinfo, COL_INFO, " | Intf. ID: %u", interfaceAllIdValue);

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_if_up_id, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_if_id, info_tvb, info_offset+3, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_if_low_id, info_tvb, info_offset+4, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_if_all_id, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_sequence_number(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;
    guint8        hf_v52_sequence_number_tmp;
    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length  = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb     = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(info_tvb, info_offset), &info_element_values_short_ext, "Unknown element"));

    hf_v52_sequence_number_tmp = tvb_get_guint8(info_tvb, info_offset+2)-0x80;
    col_append_fstr(pinfo->cinfo, COL_INFO, ": %u", hf_v52_sequence_number_tmp);

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_sequence_number, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_physical_c_channel_id(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_fstr(pinfo->cinfo, COL_INFO, " | Phy C-ch: %u, %u", tvb_get_guint8(info_tvb, info_offset+2), tvb_get_guint8(info_tvb, info_offset+3));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_v5_link_id, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_v5_time_slot, info_tvb, info_offset+3, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_pp_rejection_cause(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, rejection_cause_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_rejection_cause, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_protocol_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, error_cause_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_error_cause, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_diagnostic_msg, info_tvb, info_offset+3, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_diagnostic_element, info_tvb, info_offset+4, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_performance_grading(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = 1;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset)-0xe0, performance_grading_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_performance_grading, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_cp_rejection_cause(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = 1;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset)-0xe0, cp_rejection_cause_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_cp_rejection_cause, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_user_port_identification(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        buffer;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
    proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
    proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);

    buffer = tvb_get_guint8(info_tvb, info_offset+2)&0x01;

    if (buffer == 0x01) {
        proto_tree_add_item(info_tree, hf_v52_pstn_user_port_id, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_pstn_user_port_id_lower, info_tvb, info_offset+3, 1, ENC_BIG_ENDIAN);

        col_append_fstr(pinfo->cinfo, COL_INFO, " | PSTN port: %u", (((tvb_get_guint8(info_tvb, info_offset+2)>>1)<<8)+(tvb_get_guint8(info_tvb, info_offset+3))));
    }
    else if (buffer == 0x00) {
        proto_tree_add_item(info_tree, hf_v52_isdn_user_port_id, info_tvb, info_offset+2, 1, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_isdn_user_port_id_lower, info_tvb, info_offset+3, 1, ENC_BIG_ENDIAN);

        col_append_fstr(pinfo->cinfo, COL_INFO, " | ISDN: %u", (((tvb_get_guint8(info_tvb, info_offset+2)>>2)<<7)+((tvb_get_guint8( info_tvb, info_offset+3)>>1))));
    }
}

static void
dissect_isdn_port_time_slot_identification(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;
    guint8        isdn_user_port_ts_num_tmp;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    isdn_user_port_ts_num_tmp = (tvb_get_guint8(info_tvb, info_offset+2)) -  128;
    col_append_str(pinfo->cinfo, COL_INFO, ", ");
    col_append_fstr(pinfo->cinfo, COL_INFO, "%x", isdn_user_port_ts_num_tmp);

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_isdn_user_port_ts_num, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_v5_time_slot_identification(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;
    guint8        v5_link_id_tmp;
    guint8        v5_time_slot_tmp;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    v5_link_id_tmp = tvb_get_guint8(info_tvb, info_offset+2);
    v5_time_slot_tmp = tvb_get_guint8(info_tvb, info_offset+3);

    if (v5_time_slot_tmp >= 64) {
        v5_time_slot_tmp = v5_time_slot_tmp - 64;
    }

    if (v5_time_slot_tmp >= 32) {
        v5_time_slot_tmp = v5_time_slot_tmp - 32;
    }

    col_append_fstr(pinfo->cinfo, COL_INFO, " | V5 Link: %u, %u ", v5_link_id_tmp, v5_time_slot_tmp);

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_v5_link_id, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_override, info_tvb, info_offset+3, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_v5_time_slot, info_tvb, info_offset+3, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_multi_slot_map(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_fstr(pinfo->cinfo, COL_INFO, " | V5MSlink ID:%u", tvb_get_guint8(info_tvb, info_offset+2));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_v5_link_id, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);

        if (tvb_reported_length_remaining(info_tvb, info_offset+3))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+3, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+4))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+4, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+5))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+5, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+6))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+6, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+7))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+7, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+8))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+8, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+9))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+9, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+10))
            proto_tree_add_item(info_tree, hf_v52_v5_multi_slot_elements, info_tvb, info_offset+10, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_bcc_rejct_cause(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, reject_cause_type_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_reject_cause_type, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_bcc_protocol_error_cause(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, bcc_protocol_error_cause_type_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_bcc_protocol_error_cause, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);

        if (tvb_reported_length_remaining(info_tvb, info_offset+3))
            proto_tree_add_item(info_tree, hf_v52_diagnostic_message, info_tvb, info_offset+3, info_element_length, ENC_BIG_ENDIAN);
        if (tvb_reported_length_remaining(info_tvb, info_offset+4))
            proto_tree_add_item(info_tree, hf_v52_diagnostic_information, info_tvb, info_offset+4, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_connection_incomplete(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1)+2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    col_append_str(pinfo->cinfo, COL_INFO, " | ");
    col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2) & 0x80, connection_incomplete_reason_values, "Unknown element"));

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_connection_incomplete_reason, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}

static void
dissect_link_control_function(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
{
    proto_tree   *info_tree;
    proto_item   *ti_info;
    const guint8  info_element_length = 1;
    guint8        info_element;

    guint16       data_length;
    tvbuff_t     *info_tvb;
    const int     info_offset = 0;

    info_element = tvb_get_guint8(tvb, offset);

    data_length = tvb_get_guint8(tvb, offset+1) + 2;
    info_tvb    = tvb_new_subset_length(tvb, offset, data_length);

    info_tree = proto_tree_add_subtree(tree, info_tvb, info_offset, -1, ett_v52_info, &ti_info, "Info Element:");

    if (message_type_tmp != 0x31) {
        col_append_str(pinfo->cinfo, COL_INFO, " | ");
        col_append_str(pinfo->cinfo, COL_INFO, val_to_str_const(tvb_get_guint8(info_tvb, info_offset+2)-0x80, link_control_function_values, "Unknown element"));
    }

    if (info_tree != NULL) {
        proto_tree_add_item(info_tree, hf_v52_info_element, info_tvb, info_offset, info_element_length, ENC_BIG_ENDIAN);
        proto_tree_add_item(info_tree, hf_v52_info_length, info_tvb, info_offset+1, info_element_length, ENC_BIG_ENDIAN);
        proto_item_append_text(ti_info, " %s (0x%x)", val_to_str_ext_const(info_element, &info_element_values_ext, "unknown info element"), info_element);
        proto_tree_add_item(info_tree, hf_v52_link_control_function, info_tvb, info_offset+2, info_element_length, ENC_BIG_ENDIAN);
    }
}



static void
dissect_v52_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
    int    offset = 4;
    guint8 info_element, info_element_length;
    /*int    old_offset;*/
    int    singleoctet;

    while (tvb_reported_length_remaining(tvb, offset) > 0) {
        singleoctet = 0;
        /* old_offset = offset; */
        info_element = tvb_get_guint8(tvb, offset);
        switch (info_element) {
            case PSTN_SEQUENCE_NUMBER:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_pstn_sequence_number(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case CADENCED_RINGING:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_cadenced_ring(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case PULSED_SIGNAL:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_pulsed_signal(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case STEADY_SIGNAL:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_steady_signal(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case DIGIT_SIGNAL:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_digit_signal(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case RECOGNITION_TIME:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_recognition_time(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case ENABLE_AUTO_ACK:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_enable_auto_ack(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case DISABLE_AUTO_ACK:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_disable_auto_ack(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case CAUSE:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_cause(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case RESOURCE_UNAVAILABLE:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_resource_unavailable(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case PULSE_NOTIFICATION:
                dissect_pulse_notification(tvb, pinfo, tree, offset);
                singleoctet = 1;
            break;
            case LINE_INFORMATION:
                dissect_line_information(tvb, pinfo, tree, offset);
                singleoctet = 1;
            break;
            case STATE:
                dissect_state(tvb, pinfo, tree, offset);
                singleoctet = 1;
            break;
            case AUTO_SIG_SEQUENCE:
                dissect_auto_sig_sequence(tvb, pinfo, tree, offset);
                singleoctet = 1;
            break;
            case SEQUENCE_RESPONSE:
                dissect_sequence_response(tvb, pinfo, tree, offset);
                singleoctet = 1;
            break;

            case CONTROL_FUNCTION_ELEMENT:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_control_function_element(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case CONTROL_FUNCTION_ID:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_control_function_id(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case VARIANT:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_variant(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case INTERFACE_ID:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_interface_id(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case SEQUENCE_NUMBER:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_sequence_number(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case C_CHANNEL_ID:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_physical_c_channel_id(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case PP_REJECTION_CAUSE:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_pp_rejection_cause(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case PROTOCOL_ERROR:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_protocol_error(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case PERFORMANCE_GRADING:
                dissect_performance_grading(tvb, pinfo, tree, offset);
                singleoctet = 1;
            break;
            case CP_REJECTION_CAUSE:
                dissect_cp_rejection_cause(tvb, pinfo, tree, offset);
                singleoctet = 1;
            break;
            case USER_PORT_ID:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_user_port_identification(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case ISDN_PORT_TS_ID:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_isdn_port_time_slot_identification(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case V5_TIME_SLOT_ID:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_v5_time_slot_identification(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case MULTI_SLOT_MAP:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_multi_slot_map(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case BCC_REJECT_CAUSE:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_bcc_rejct_cause(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case BCC_PROTOCOL_ERROR_CAUSE:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_bcc_protocol_error_cause(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case CONNECTION_INCOMPLETE:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_connection_incomplete(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            case LINK_CONTROL_FUNCTION:
                info_element_length = tvb_get_guint8(tvb, offset+1);
                dissect_link_control_function(tvb, pinfo, tree, offset);
                offset += info_element_length+2;
            break;
            default:
                offset += 1;
            break;
        }
        if (singleoctet == 1) {
            offset += 1;
        }
#if 0
        if (old_offset <= offset) {
            expert_add_info_format(pinfo, NULL, PI_MALFORMED, PI_WARN, "Zero-length information element");
            return;
        }
#endif
    }
}


static void
dissect_v52_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
    int         offset   = 0;
    proto_tree *v52_tree = NULL;
    gboolean    addr     = FALSE;
    guint8      bcc_all_address_tmp_up = -1;
    guint16     pstn_all_address_tmp, isdn_all_address_tmp, bcc_all_address_tmp;
    guint16     prot_all_address_tmp, link_all_address_tmp;

    col_set_str(pinfo->cinfo, COL_PROTOCOL, "V52");

    if (tree) {
        proto_item *ti;
        ti = proto_tree_add_item(tree, proto_v52, tvb, offset, -1, ENC_NA);
        v52_tree = proto_item_add_subtree(ti, ett_v52);

        dissect_v52_protocol_discriminator(tvb, offset, v52_tree);
    }


    /* if (v52_tree != NULL) */ {

        message_type_tmp = tvb_get_guint8(tvb, MSG_TYPE_OFFSET);

        if ((message_type_tmp >= 0x00) && (message_type_tmp <= 0x0e)) {
            addr = TRUE;
            proto_tree_add_item(v52_tree, hf_v52_pstn_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
            proto_tree_add_item(v52_tree, hf_v52_pstn_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

            pstn_all_address_tmp = (((tvb_get_guint8(tvb, ADDRESS_OFFSET)>>1)<<8)+(tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET)));


            col_append_fstr(pinfo->cinfo, COL_INFO, " | PSTN: %u", pstn_all_address_tmp);
        }

        if ((message_type_tmp >= 0x10) && (message_type_tmp <= 0x13)) {
            addr = TRUE;
            if ((tvb_get_guint8(tvb, ADDRESS_OFFSET)&0x01) == 0x1) {
                pstn_all_address_tmp = (((tvb_get_guint8(tvb, ADDRESS_OFFSET)>>1)<<8)+(tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET)));
                proto_tree_add_item(v52_tree, hf_v52_pstn_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
                proto_tree_add_item(v52_tree, hf_v52_pstn_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

                col_append_fstr(pinfo->cinfo, COL_INFO, " | PSTN: %u", pstn_all_address_tmp);
            }
            else {
                isdn_all_address_tmp = (((tvb_get_guint8(tvb, ADDRESS_OFFSET)>>2)<<7)+((tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET)>>1)));
                proto_tree_add_item(v52_tree, hf_v52_isdn_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
                proto_tree_add_item(v52_tree, hf_v52_isdn_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

                col_append_fstr(pinfo->cinfo, COL_INFO, " | ISDN: %u", isdn_all_address_tmp);
            }
        }

        if ((message_type_tmp == 0x30) || (message_type_tmp == 0x31)) {
            addr = TRUE;
            link_all_address_tmp = tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET);
            proto_tree_add_item(v52_tree, hf_v52_link_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
            proto_tree_add_item(v52_tree, hf_v52_link_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

            col_append_fstr(pinfo->cinfo, COL_INFO, " | LinkId: %u", link_all_address_tmp);
        }

        if ((message_type_tmp >= 0x20) && (message_type_tmp <= 0x2a)) {
            addr = TRUE;
            proto_tree_add_item(v52_tree, hf_v52_bcc_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
            proto_tree_add_item(v52_tree, hf_v52_bcc_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

            bcc_all_address_tmp_up = tvb_get_guint8(tvb, ADDRESS_OFFSET);
            if (bcc_all_address_tmp_up >= 128) {
                bcc_all_address_tmp_up = bcc_all_address_tmp_up - 128;
            }
            bcc_all_address_tmp = (bcc_all_address_tmp_up<<6) + tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET);

            col_append_fstr(pinfo->cinfo, COL_INFO, " | ref: %u", bcc_all_address_tmp);
        }

        if ((message_type_tmp >= 0x18) && (message_type_tmp <= 0x1f)) {
            addr = TRUE;
            prot_all_address_tmp = (tvb_get_guint8(tvb, ADDRESS_OFFSET)<<8) + (tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET));
            proto_tree_add_item(v52_tree, hf_v52_prot_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
            proto_tree_add_item(v52_tree, hf_v52_prot_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

            if ((message_type_tmp == 0x1e) || (message_type_tmp == 0x1f)) {}
            else {
                col_append_fstr(pinfo->cinfo, COL_INFO, " | Log C-ch: %u", prot_all_address_tmp);
            }
        }

        if (addr == FALSE) {
            if ((tvb_get_guint8(tvb, ADDRESS_OFFSET)&0x01) == 0x1) {
                pstn_all_address_tmp = (((tvb_get_guint8(tvb, ADDRESS_OFFSET)>>1)<<8)+(tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET)));
                proto_tree_add_item(v52_tree, hf_v52_pstn_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
                proto_tree_add_item(v52_tree, hf_v52_pstn_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

                col_append_fstr(pinfo->cinfo, COL_INFO, " | PSTN: %u", pstn_all_address_tmp);

            }
            else {
                isdn_all_address_tmp = (((tvb_get_guint8(tvb, ADDRESS_OFFSET)>>2)<<7)+((tvb_get_guint8(tvb, LOW_ADDRESS_OFFSET)>>1)));
                proto_tree_add_item(v52_tree, hf_v52_isdn_address, tvb, ADDRESS_OFFSET, ADDRESS_LENGTH, ENC_BIG_ENDIAN);
                proto_tree_add_item(v52_tree, hf_v52_isdn_low_address, tvb, LOW_ADDRESS_OFFSET, LOW_ADDRESS_LENGTH, ENC_BIG_ENDIAN);

                col_append_fstr(pinfo->cinfo, COL_INFO, " | ISDN: %u", isdn_all_address_tmp);

            }
        }

        proto_tree_add_item(v52_tree, hf_v52_msg_type, tvb, MSG_TYPE_OFFSET, MSG_TYPE_LENGTH, ENC_BIG_ENDIAN);


        col_append_str(pinfo->cinfo, COL_INFO, " | ");
        col_append_str(pinfo->cinfo, COL_INFO, val_to_str_ext_const(tvb_get_guint8(tvb, MSG_TYPE_OFFSET), &msg_type_values_short_ext, "Unknown msg type"));

        dissect_v52_info(tvb, pinfo, v52_tree);
    }
}

static int
dissect_v52(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
    dissect_v52_message(tvb, pinfo, tree);
    return tvb_captured_length(tvb);
}

void
proto_register_v52(void)
{
    static hf_register_info hf[] = {
        { &hf_v52_discriminator,
          { "Protocol discriminator", "v52.disc", FT_UINT8, BASE_HEX, NULL, 0x0,
            NULL, HFILL }},
#if 0
        { &hf_v52_address,
          { "Address",    "v52.address",
             FT_UINT8,    BASE_HEX, NULL,                               0xff,
             NULL, HFILL } },
#endif
#if 0
        { &hf_v52_low_address,
          { "Address Low",    "v52.low_address",
             FT_UINT8,    BASE_HEX, NULL,                               0xff,
             NULL, HFILL } },
#endif
/* ISDN */
        { &hf_v52_isdn_address,
          { "Address isdn",    "v52.isdn_address",
             FT_UINT8,    BASE_HEX, NULL,                               0xfc,
             NULL, HFILL } },
        { &hf_v52_isdn_low_address,
          { "Address isdn Low",    "v52.isdn_low_address",
             FT_UINT8,    BASE_HEX, NULL,                               0xfe,
             NULL, HFILL } },
/* PSTN */
        { &hf_v52_pstn_address,
          { "Address pstn",    "v52.pstn_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xfe,
          NULL, HFILL } },
        { &hf_v52_pstn_low_address,
          { "Address pstn Low",    "v52.pstn_low_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
/* LINK */
        { &hf_v52_link_address,
          { "Address link",    "v52.link_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
        { &hf_v52_link_low_address,
          { "Address link Low",    "v52.link_low_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
/* BCC */
        { &hf_v52_bcc_address,
          { "Address bcc",    "v52.bcc_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0x7f,
          NULL, HFILL } },
        { &hf_v52_bcc_low_address,
          { "Address bcc Low",    "v52.bcc_low_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0x3f,
          NULL, HFILL } },
/* PROTECTION */
        { &hf_v52_prot_address,
          { "Address prot",    "v52.prot_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
        { &hf_v52_prot_low_address,
          { "Address prot Low",    "v52.prot_low_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
/* CONTROL */
#if 0
        { &hf_v52_ctrl_address,
          { "Address ctrl",    "v52.ctrl_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
#endif
#if 0
        { &hf_v52_ctrl_low_address,
          { "Address ctrl Low",    "v52.ctrl_low_address",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
#endif
/* OTHER */
        {&hf_v52_msg_type,
          { "Message type",   "v52.msg_type",
          FT_UINT8,    BASE_HEX|BASE_EXT_STRING, &msg_type_values_ext,  0x0,
          NULL, HFILL } },
        {&hf_v52_info_element,
          { "Information element",   "v52.info_element",
          FT_UINT8,    BASE_HEX|BASE_EXT_STRING, &info_element_values_ext, 0x0,
          NULL, HFILL } },
        {&hf_v52_info_length,
          { "Information length",   "v52.info_length",
          FT_UINT8,    BASE_DEC, NULL,                                  0x0,
          NULL, HFILL } },
        {&hf_v52_pulse_notification,
          { "Pulse notification",   "v52.pulse_notification",
          FT_UINT8,    BASE_HEX, NULL,                                  0x0,
          NULL, HFILL } },
        {&hf_v52_pstn_sequence_number,
          { "Sequence number",    "v52.pstn_sequence_number",
          FT_UINT8,    BASE_HEX, NULL,                                  0x7f,
          NULL, HFILL } },
        {&hf_v52_cadenced_ring,
          { "Cadenced ring",    "v52.cadenced_ring",
          FT_UINT8,    BASE_HEX, NULL,                                  0x7f,
          NULL, HFILL } },
        {&hf_v52_pulse_type,
          { "Pulse Type",       "v52.pulse_type",
          FT_UINT8,    BASE_HEX|BASE_EXT_STRING, &pulse_type_values_ext, 0x0,
          NULL, HFILL } },
        {&hf_v52_suppression_indicator,
          { "Suppression indicator",  "v52.suppression_indicator",
          FT_UINT8,    BASE_HEX, VALS(suppression_indication_values),   0x60,
          NULL, HFILL } },
        {&hf_v52_pulse_duration,
          { "Pulse duration type",   "v52.pulse_duration",
          FT_UINT8,    BASE_HEX, NULL,                                  0x1f,
          NULL, HFILL } },
        {&hf_v52_ack_request_indicator,
          { "Ack request indicator",    "v52.ack_request_indicator",
          FT_UINT8,    BASE_HEX, VALS(ack_request_indication_values),   0x60,
          NULL, HFILL } },
        {&hf_v52_number_of_pulses,
          { "Number of pulses",      "v52.number_of_pulses",
          FT_UINT8,    BASE_DEC, NULL,                                  0x1f,
          NULL, HFILL } },
        {&hf_v52_steady_signal,
          { "Steady Signal",         "v52.steady_signal",
          FT_UINT8,    BASE_HEX|BASE_EXT_STRING, &steady_signal_values_ext, 0x7f,
          NULL, HFILL } },
        {&hf_v52_digit_ack,
          { "Digit ack request indication", "v52.digit_ack",
          FT_BOOLEAN,    8, TFS(&tfs_digit_ack_values),                 0x40,
          NULL, HFILL } },
        {&hf_v52_digit_spare,
          { "Digit spare", "v52.digit_spare",
          FT_UINT8,    BASE_HEX, NULL,                                  0x30,
          NULL, HFILL } },
        {&hf_v52_digit_info,
          { "Digit information",    "v52.digit_info",
          FT_UINT8,    BASE_HEX, NULL,                                  0x0f,
          NULL, HFILL } },
        {&hf_v52_duration_type,
          { "Duration Type",    "v52.duration_type",
          FT_UINT8,    BASE_HEX, NULL,                                  0x3f,
          NULL, HFILL } },
        {&hf_v52_res_unavailable,
          { "Resource unavailable", "v52.res_unavailable",
          FT_STRING,   BASE_NONE, NULL,                                  0x0,
          NULL, HFILL } },
        {&hf_v52_line_info,
          { "Line_Information",      "v52.line_info",
          FT_UINT8,    BASE_HEX, VALS(line_info_values),                0x0f,
          NULL, HFILL } },
        {&hf_v52_state,
          { "PSTN FSM state",       "v52.state",
          FT_UINT8,    BASE_HEX, VALS(state_values),                    0x0f,
          NULL, HFILL } },
        {&hf_v52_auto_signalling_sequence,
          { "Autonomous signalling sequence", "v52.auto_signalling_sequence",
          FT_UINT8,    BASE_HEX, NULL,                                  0x0f,
          NULL, HFILL } },
        {&hf_v52_sequence_response,
          { "Sequence response",    "v52.sequence_response",
          FT_UINT8,    BASE_HEX, NULL,                                  0x0f,
          NULL, HFILL } },
        {&hf_v52_control_function_element,
          { "Control function element",    "v52.control_function_element",
          FT_UINT8,    BASE_HEX, VALS(control_function_element_values), 0x7f,
          NULL, HFILL } },
        {&hf_v52_control_function_id,
          { "Control function ID",    "v52.control_function",
          FT_UINT8,    BASE_HEX|BASE_EXT_STRING, &control_function_id_values_ext, 0x7f,
          NULL, HFILL } },
        {&hf_v52_variant,
          { "Variant",    "v52.variant",
          FT_UINT8,    BASE_DEC, NULL,                                  0x7f,
          NULL, HFILL } },
        {&hf_v52_if_up_id,
          { "Interface up ID",    "v52.interface_up_id",
          FT_UINT8,   BASE_HEX, NULL,                                   0xff,
          NULL, HFILL } },
        {&hf_v52_if_id,
          { "Interface ID",    "v52.interface_id",
          FT_UINT8,   BASE_HEX, NULL,                                   0xff,
          NULL, HFILL } },
        {&hf_v52_if_low_id,
          { "Interface down ID",    "v52.interface_low_id",
          FT_UINT8,   BASE_HEX, NULL,                                   0xff,
          NULL, HFILL } },
        {&hf_v52_if_all_id,
          { "Interface all ID",    "v52.interface_all_id",
          FT_UINT24,   BASE_DEC, NULL,                                  0xffffff,
          NULL, HFILL } },
        {&hf_v52_sequence_number,
          { "Sequence number",    "v52.sequence_number",
          FT_UINT8,    BASE_HEX, NULL,                                  0x7f,
          NULL, HFILL } },
        {&hf_v52_v5_link_id,
          { "V5 2048 kbit/s Link Identifier",    "v52.V5_ln_id",
          FT_UINT8,    BASE_HEX, NULL,                                  0x0,
                   NULL, HFILL } },
        {&hf_v52_v5_multi_slot_elements,
          { "Additional MS ID",    "v52.add_ms_id",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
        {&hf_v52_v5_time_slot,
          { "V5 Time Slot Number",    "v52.v5_time_slot",
          FT_UINT8,    BASE_DEC, NULL,                                  0x1f,
          NULL, HFILL } },
        {&hf_v52_rejection_cause,
          { "Rejection cause",    "v52.rejection_cause",
          FT_UINT8,    BASE_HEX, VALS(rejection_cause_values),          0x7f,
          NULL, HFILL } },
        {&hf_v52_error_cause,
          { "Protocol Error Cause type",    "v52.error_cause",
          FT_UINT8,    BASE_HEX, VALS(error_cause_values),              0x7f,
          NULL, HFILL } },
        {&hf_v52_diagnostic_msg,
          { "Diagnostic message",    "v52.diagnostic_message",
          FT_UINT8,    BASE_HEX, NULL,                                  0x7f,
          NULL, HFILL } },
        {&hf_v52_diagnostic_element,
          { "Diagnostic element",    "v52.diagnostic_element",
          FT_UINT8,    BASE_HEX, NULL,                                  0x0,
          NULL, HFILL } },
        {&hf_v52_performance_grading,
          { "Performance grading",    "v52.performance_grading",
          FT_UINT8,    BASE_HEX, VALS(performance_grading_values),      0x0f,
          NULL, HFILL } },
        {&hf_v52_cp_rejection_cause,
          { "Rejection cp cause",    "v52.cp_rejection_cause",
          FT_UINT8,    BASE_HEX, VALS(cp_rejection_cause_values),       0x0f,
          NULL, HFILL } },
        {&hf_v52_pstn_user_port_id,
          { "PSTN User Port identification Value", "v52.pstn_user_port_id",
            FT_UINT8,    BASE_HEX, NULL,                                0xfe,
            NULL, HFILL } },
        {&hf_v52_pstn_user_port_id_lower,
          { "PSTN User Port Identification Value (lower)", "v52.pstn_user_port_id_lower",
            FT_UINT8,    BASE_HEX, NULL,                                0xff,
            NULL, HFILL } },
        {&hf_v52_isdn_user_port_id,
          { "ISDN User Port Identification Value", "v52.isdn_user_port_id",
          FT_UINT8,    BASE_HEX, NULL,                                  0xfc,
          NULL, HFILL } },
        {&hf_v52_isdn_user_port_id_lower,
          { "ISDN User Port Identification Value (lower)", "v52.user_port_id_lower",
          FT_UINT8,    BASE_HEX, NULL,                                  0xfe,
          NULL, HFILL } },
        {&hf_v52_isdn_user_port_ts_num,
          { "ISDN user port time slot number", "v52.isdn_user_port_ts_num",
          FT_UINT8,    BASE_HEX, NULL,                                  0x1f,
          NULL, HFILL } },
        {&hf_v52_override,
          { "Override",    "v52.override",
          FT_BOOLEAN,  8,        NULL,                                  0x20,
          NULL, HFILL } },
        {&hf_v52_reject_cause_type,
          { "Reject cause type",    "v52.reject_cause_type",
          FT_UINT8,    BASE_HEX, VALS(reject_cause_type_values),        0x7f,
          NULL, HFILL } },
        {&hf_v52_bcc_protocol_error_cause,
          { "Protocol error cause type",    "v52.bcc_protocol_cause",
          FT_UINT8,    BASE_HEX, VALS(bcc_protocol_error_cause_type_values), 0x7f,
          NULL, HFILL } },
        {&hf_v52_diagnostic_message,
          { "Diagnostic message",    "v52.diagnoatic_message",
          FT_UINT8,    BASE_HEX, NULL,                                  0x7f,
          NULL, HFILL } },
        {&hf_v52_diagnostic_information,
          { "Diagnostic information",    "v52.diagnostic_inforation",
          FT_UINT8,    BASE_HEX, NULL,                                  0xff,
          NULL, HFILL } },
        {&hf_v52_connection_incomplete_reason,
          { "Reason",    "v52.connection_incomplete_reason",
          FT_UINT8,    BASE_HEX, VALS(connection_incomplete_reason_values), 0x0,
          NULL, HFILL } },
        {&hf_v52_link_control_function,
          { "Link control function", "v52.link_control_function",
          FT_UINT8,    BASE_HEX, VALS(link_control_function_values), 0x7f,
          NULL, HFILL } },
        {&hf_v52_cause_type,
          { "Cause type",           "v52.cause_type",
          FT_UINT8,    BASE_HEX, VALS(cause_type_values),       0x7f,
          NULL, HFILL } }
    };
    static gint *ett[] = {
        &ett_v52,
        &ett_v52_info,
    };

    proto_v52 = proto_register_protocol("V5.2", "V5.2", "v52");
    proto_register_field_array (proto_v52, hf, array_length(hf));
    proto_register_subtree_array(ett, array_length(ett));

    register_dissector("v52", dissect_v52, proto_v52);
}

/*
 * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
 *
 * Local variables:
 * c-basic-offset: 4
 * tab-width: 8
 * indent-tabs-mode: nil
 * End:
 *
 * vi: set shiftwidth=4 tabstop=8 expandtab:
 * :indentSize=4:tabSize=8:noTabs=true:
 */