From 716771255e12da948a55173d9c0c84c33c11dcb8 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 28 Jan 2020 19:28:32 +0100 Subject: [PATCH] gsm_abis_om2000: Dissect some more Information Elements We don't yet know what they mean, but we can dissect their TLV structure from protocol traces. Change-Id: Ib532e52b686cfd56502de807a60873a9570e5372 Reviewed-on: https://code.wireshark.org/review/35981 Reviewed-by: Pascal Quantin --- epan/dissectors/packet-gsm_abis_om2000.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/epan/dissectors/packet-gsm_abis_om2000.c b/epan/dissectors/packet-gsm_abis_om2000.c index b320b71beb..cdb39a773f 100644 --- a/epan/dissectors/packet-gsm_abis_om2000.c +++ b/epan/dissectors/packet-gsm_abis_om2000.c @@ -1127,6 +1127,9 @@ dissect_om2k_attrs(tvbuff_t *tvb, packet_info *pinfo, gint offset, proto_tree *t case 0xa3: case 0xa5: case 0xa6: + case 0xae: + case 0xaf: + case 0xb0: /* we don't know any of the above, but the * TLV structure is quite clear in the protocol * traces */ @@ -1136,6 +1139,12 @@ dissect_om2k_attrs(tvbuff_t *tvb, packet_info *pinfo, gint offset, proto_tree *t case 0xb5: /* unknown 2-bytes fixed length attribute of TX Config */ offset += dissect_om2k_attr_unkn(tvb, offset, 2, iei, tree); break; + case 0xd2: /* unknown 6-bytes fixed length attribute of TRXC Fault Rep */ + offset += dissect_om2k_attr_unkn(tvb, offset, 6, iei, tree); + break; + case 0xac: /* unknown 58-bytes fixed length attribute of message type 0x0136 */ + offset += dissect_om2k_attr_unkn(tvb, offset, 58, iei, tree); + break; case 0x9e: case 0x9f: default: