aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_rlcmac.h
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-06-02 17:56:00 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2016-06-02 21:06:37 +0000
commit428ee66ae1c524b49f9043729b1f1e9b4f52f409 (patch)
tree75ba280e78c955eb8a4d0d6beb965b81e8de8aca /epan/dissectors/packet-gsm_rlcmac.h
parentf9f8e21a4b88d2c6efe0181bced998095bc3b440 (diff)
GSM RLC/MAC: add dissection of 2G->3G/4G PS handover
Change-Id: Ia24055d7d871b9fbf69a9225a2a273fced950a3c Reviewed-on: https://code.wireshark.org/review/15700 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-gsm_rlcmac.h')
-rw-r--r--epan/dissectors/packet-gsm_rlcmac.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/epan/dissectors/packet-gsm_rlcmac.h b/epan/dissectors/packet-gsm_rlcmac.h
index f83f7726ce..3d11bd341e 100644
--- a/epan/dissectors/packet-gsm_rlcmac.h
+++ b/epan/dissectors/packet-gsm_rlcmac.h
@@ -404,7 +404,6 @@ typedef struct
#define MAX_MA_LISTS_IN_PSI2 8 /* MAX MA lists = 8 */
#define MAX_ALLOCATION_BITMAP_LENGTH 128 /* max length of Fixed Allocation bitmap in BITS (2^7) */
#define MAX_VAR_LENGTH_BITMAP_LENGTH 176 /* max length ever possible for variable length fixed allocation bitmap */
-#define MAX_RRC_CONTAINER_LENGTH 255
typedef struct
@@ -4693,9 +4692,12 @@ typedef struct
typedef struct
{
guint8 RRC_ContainerLength;
- guint8 RRC_Container[MAX_RRC_CONTAINER_LENGTH];
} PS_HandoverTo_UTRAN_Payload_t;
+typedef struct
+{
+ guint8 RRC_ContainerLength;
+} PS_HandoverTo_E_UTRAN_Payload_t;
typedef struct
{
@@ -4748,6 +4750,7 @@ typedef struct
{
PS_HandoverTo_A_GB_ModePayload_t PS_HandoverTo_A_GB_ModePayload;
PS_HandoverTo_UTRAN_Payload_t PS_HandoverTo_UTRAN_Payload;
+ PS_HandoverTo_E_UTRAN_Payload_t PS_HandoverTo_E_UTRAN_Payload;
} u;
} Packet_Handover_Command_t;