aboutsummaryrefslogtreecommitdiffstats
path: root/wireshark/0006-abis_oml-hsl.patch
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-01-13 11:03:51 +0100
committerHarald Welte <laforge@gnumonks.org>2011-01-13 11:03:51 +0100
commit4bf40c090d8856a5c8523d7c16fb37721879cb86 (patch)
tree23a7d50269532e302873df87e627d1a25c13f799 /wireshark/0006-abis_oml-hsl.patch
parent18b590de4acec1536d5fc44ae60cf2ff7250ffe6 (diff)
[wireshark] some initial hackish patches to support HSLs Abis/IP
Diffstat (limited to 'wireshark/0006-abis_oml-hsl.patch')
-rw-r--r--wireshark/0006-abis_oml-hsl.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/wireshark/0006-abis_oml-hsl.patch b/wireshark/0006-abis_oml-hsl.patch
new file mode 100644
index 000000000..28885ab64
--- /dev/null
+++ b/wireshark/0006-abis_oml-hsl.patch
@@ -0,0 +1,32 @@
+Index: wireshark/epan/dissectors/packet-gsm_abis_oml.c
+===================================================================
+--- wireshark.orig/epan/dissectors/packet-gsm_abis_oml.c 2011-01-13 10:11:08.000000000 +0100
++++ wireshark/epan/dissectors/packet-gsm_abis_oml.c 2011-01-13 10:13:22.000000000 +0100
+@@ -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 */
+@@ -1223,6 +1224,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-01-13 10:11:25.000000000 +0100
++++ wireshark/epan/dissectors/packet-gsm_abis_oml.h 2011-01-13 10:11:54.000000000 +0100
+@@ -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