aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsmtap.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-10-11 18:21:27 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-10-11 18:21:27 +0000
commit0bbbcccbeb2e9cdb34a0c86e159ff0ffe5126e2b (patch)
treea37031d9f33afd1fb1ab175c33ddac4d0d5ba4d8 /epan/dissectors/packet-gsmtap.c
parent9e1a19bf6f97fce8515e0829f74f02ec0d0d50d4 (diff)
From Harald Welte:
In order to ensure one consistent GSMTAP definition, some comments are added to the code in order to make sure modifications are first merged in the GSMTAP mainline header file, and then propagated to wireshark. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6442 svn path=/trunk/; revision=39366
Diffstat (limited to 'epan/dissectors/packet-gsmtap.c')
-rw-r--r--epan/dissectors/packet-gsmtap.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gsmtap.c b/epan/dissectors/packet-gsmtap.c
index cdb566798c..59d7a0cdd6 100644
--- a/epan/dissectors/packet-gsmtap.c
+++ b/epan/dissectors/packet-gsmtap.c
@@ -52,6 +52,19 @@
#include "packet-tetra.h"
+/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
+/* The following types and definitions are imported from libosmocore,
+ * the original source of the GSMTAP format.
+ *
+ * prior to getting them accepted/included into the official Osmocom
+ * GSMTAP definition, available from
+ * http://cgit.osmocom.org/cgit/libosmocore/tree/include/osmocom/core/gsmtap.h
+ *
+ * The GSMTAP maintainer can be contacted via the
+ * openbsc@lists.osmocom.org mailing list, or by private e-mail
+ * to laforge@gnumonks.org
+ */
+/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
#define GSMTAP_TYPE_UM 0x01
#define GSMTAP_TYPE_ABIS 0x02
#define GSMTAP_TYPE_UM_BURST 0x03 /* raw burst bits */
@@ -62,6 +75,7 @@
#define GSMTAP_TYPE_GB_LLC 0x08 /* GPRS Gb interface: LLC */
#define GSMTAP_TYPE_GB_SNDCP 0x09 /* GPRS Gb interface: SNDCP */
+/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
#define GSMTAP_BURST_UNKNOWN 0x00
#define GSMTAP_BURST_FCCH 0x01
#define GSMTAP_BURST_PARTIAL_SCH 0x02
@@ -80,6 +94,7 @@
#define GSMTAP_BURST_HACK 0x14 /* WiMAX HARQ ACK burst */
#define GSMTAP_BURST_PHY_ATTRIBUTES 0x15 /* WiMAX PHY Attributes burst */
+/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
#define GSMTAP_CHANNEL_UNKNOWN 0x00
#define GSMTAP_CHANNEL_BCCH 0x01
#define GSMTAP_CHANNEL_CCCH 0x02
@@ -95,6 +110,7 @@
#define GSMTAP_CHANNEL_ACCH 0x80
+/* ====== DO NOT MAKE UNAPPROVED MODIFICATIONS HERE ===== */
/* sub-types for TYPE_TETRA_AIR */
#define GSMTAP_TETRA_BSCH 0x01
#define GSMTAP_TETRA_AACH 0x02