aboutsummaryrefslogtreecommitdiffstats
path: root/wireshark/0006-abis_oml-hsl.patch
blob: e31610e4d9f777ed92855b56a056025dcf044624 (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
Index: wireshark/epan/dissectors/packet-gsm_abis_oml.c
===================================================================
--- wireshark.orig/epan/dissectors/packet-gsm_abis_oml.c	2011-09-06 13:57:13.000000000 +0200
+++ wireshark/epan/dissectors/packet-gsm_abis_oml.c	2011-09-06 14:12:12.000000000 +0200
@@ -131,6 +131,7 @@
 	{ ABIS_OM_MDISC_MMI,	"MMI Transfer" },
 	{ ABIS_OM_MDISC_TRAU,	"TRAU O&M" },
 	{ ABIS_OM_MDISC_MANUF,	"Manufacturer specific" },
+	{ ABIS_OM_MDISC_FOM_HSL,"HSL Formatted O&M" },
 };
 
 /* TS 12.21 Chapter 8.1.1 */
@@ -1197,6 +1198,7 @@
 
 		switch (msg_disc) {
 		case ABIS_OM_MDISC_FOM:
+		case ABIS_OM_MDISC_FOM_HSL:
 			offset = dissect_oml_fom(tvb, pinfo, oml_tree,
 						 offset, ti);
 			break;
Index: wireshark/epan/dissectors/packet-gsm_abis_oml.h
===================================================================
--- wireshark.orig/epan/dissectors/packet-gsm_abis_oml.h	2011-09-06 12:30:44.000000000 +0200
+++ wireshark/epan/dissectors/packet-gsm_abis_oml.h	2011-09-06 14:12:12.000000000 +0200
@@ -40,6 +40,7 @@
 #define ABIS_OM_MDISC_MMI		0x40
 #define ABIS_OM_MDISC_TRAU		0x20
 #define ABIS_OM_MDISC_MANUF		0x10
+#define ABIS_OM_MDISC_FOM_HSL		0x81
 #define ABIS_OM_PLACEMENT_ONLY		0x80
 #define ABIS_OM_PLACEMENT_FIRST 	0x40
 #define ABIS_OM_PLACEMENT_MIDDLE	0x20