aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_ipa.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2019-11-22 12:27:12 +0100
committerTomasz Moń <desowin@gmail.com>2019-11-25 15:48:56 +0000
commitcad5dff5e2cc36eea8e9f77c7f9aa2886c3b7ee5 (patch)
tree1ac6859798335acc0d1e968118b1e1f24d04124d /epan/dissectors/packet-gsm_ipa.c
parent076334a70c553b9e535f85958b1039cdb231cee2 (diff)
packet-gsm_ipa: Add #defines and names for more osmocom IPA extensions
The source / reference of this information is http://git.osmocom.org/libosmocore/tree/include/osmocom/gsm/protocol/ipaccess.h Change-Id: I32973e166a17ff2c31aa0419135ed3a27d3bd02e Reviewed-on: https://code.wireshark.org/review/35187 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Tomasz Moń <desowin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-gsm_ipa.c')
-rw-r--r--epan/dissectors/packet-gsm_ipa.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gsm_ipa.c b/epan/dissectors/packet-gsm_ipa.c
index 8e8684044a..a810b443c0 100644
--- a/epan/dissectors/packet-gsm_ipa.c
+++ b/epan/dissectors/packet-gsm_ipa.c
@@ -109,6 +109,11 @@ static dissector_table_t osmo_dissector_table;
#define ABISIP_OML 0xff
#define IPAC_PROTO_EXT_CTRL 0x00
#define IPAC_PROTO_EXT_MGCP 0x01
+#define IPAC_PROTO_EXT_LAC 0x02
+#define IPAC_PROTO_EXT_SMSC 0x03
+#define IPAC_PROTO_EXT_ORC 0x04
+#define IPAC_PROTO_EXT_GSUP 0x05
+#define IPAC_PROTO_EXT_OAP 0x06
static const value_string ipa_protocol_vals[] = {
{ 0x00, "RSL" },
@@ -152,7 +157,9 @@ static const value_string ipa_osmo_proto_vals[] = {
{ 0x01, "MGCP" },
{ 0x02, "LAC" },
{ 0x03, "SMSC" },
+ { 0x04, "ORC" },
{ 0x05, "GSUP" },
+ { 0x06, "OAP" },
{ 0, NULL }
};