blob: e31610e4d9f777ed92855b56a056025dcf044624 [file] [log] [blame]
Harald Welte4bf40c02011-01-13 11:03:51 +01001Index: wireshark/epan/dissectors/packet-gsm_abis_oml.c
2===================================================================
Harald Welte7c78c472011-09-06 21:09:05 +02003--- wireshark.orig/epan/dissectors/packet-gsm_abis_oml.c 2011-09-06 13:57:13.000000000 +0200
4+++ wireshark/epan/dissectors/packet-gsm_abis_oml.c 2011-09-06 14:12:12.000000000 +0200
Harald Welte4bf40c02011-01-13 11:03:51 +01005@@ -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 */
Harald Welte7c78c472011-09-06 21:09:05 +020013@@ -1197,6 +1198,7 @@
Harald Welte4bf40c02011-01-13 11:03:51 +010014
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===================================================================
Harald Welte7c78c472011-09-06 21:09:05 +020023--- wireshark.orig/epan/dissectors/packet-gsm_abis_oml.h 2011-09-06 12:30:44.000000000 +0200
24+++ wireshark/epan/dissectors/packet-gsm_abis_oml.h 2011-09-06 14:12:12.000000000 +0200
Harald Welte4bf40c02011-01-13 11:03:51 +010025@@ -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