blob: 28885ab641a9ada858be7b4e45d437626b3539bb [file] [log] [blame]
Harald Welte4bf40c02011-01-13 11:03:51 +01001Index: wireshark/epan/dissectors/packet-gsm_abis_oml.c
2===================================================================
3--- wireshark.orig/epan/dissectors/packet-gsm_abis_oml.c 2011-01-13 10:11:08.000000000 +0100
4+++ wireshark/epan/dissectors/packet-gsm_abis_oml.c 2011-01-13 10:13:22.000000000 +0100
5@@ -131,6 +131,7 @@
6 { ABIS_OM_MDISC_MMI, "MMI Transfer" },
7 { ABIS_OM_MDISC_TRAU, "TRAU O&M" },
8 { ABIS_OM_MDISC_MANUF, "Manufacturer specific" },
9+ { ABIS_OM_MDISC_FOM_HSL,"HSL Formatted O&M" },
10 };
11
12 /* TS 12.21 Chapter 8.1.1 */
13@@ -1223,6 +1224,7 @@
14
15 switch (msg_disc) {
16 case ABIS_OM_MDISC_FOM:
17+ case ABIS_OM_MDISC_FOM_HSL:
18 offset = dissect_oml_fom(tvb, pinfo, oml_tree,
19 offset, ti);
20 break;
21Index: wireshark/epan/dissectors/packet-gsm_abis_oml.h
22===================================================================
23--- wireshark.orig/epan/dissectors/packet-gsm_abis_oml.h 2011-01-13 10:11:25.000000000 +0100
24+++ wireshark/epan/dissectors/packet-gsm_abis_oml.h 2011-01-13 10:11:54.000000000 +0100
25@@ -40,6 +40,7 @@
26 #define ABIS_OM_MDISC_MMI 0x40
27 #define ABIS_OM_MDISC_TRAU 0x20
28 #define ABIS_OM_MDISC_MANUF 0x10
29+#define ABIS_OM_MDISC_FOM_HSL 0x81
30 #define ABIS_OM_PLACEMENT_ONLY 0x80
31 #define ABIS_OM_PLACEMENT_FIRST 0x40
32 #define ABIS_OM_PLACEMENT_MIDDLE 0x20