aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rrc.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-07-26 08:15:20 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-07-26 08:15:20 +0000
commitaed65b0c7b2bf94aaf60805b26c84d9c511249dc (patch)
tree411e000b270d409943a480c9a60996c9790c7968 /epan/dissectors/packet-rrc.h
parent65ebfc9db449b0ef759a295bd94dca17f3eb43ae (diff)
From Jacob Nordgren and Rishie Sharma:
- RRC now configures logical channels in HS-DSCH hs, and some HSDSCH common support added - RLC: modifed memory management, MAC: dch would set the incorrect logical channel for RLC svn path=/trunk/; revision=44027
Diffstat (limited to 'epan/dissectors/packet-rrc.h')
-rw-r--r--epan/dissectors/packet-rrc.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rrc.h b/epan/dissectors/packet-rrc.h
index 041df54664..dcaf5808f5 100644
--- a/epan/dissectors/packet-rrc.h
+++ b/epan/dissectors/packet-rrc.h
@@ -34,6 +34,7 @@
#define PACKET_RRC_H
#include <epan/asn1.h> /* Needed for non asn1 dissectors?*/
+
extern int proto_rrc;
/*--- Included file: packet-rrc-exp.h ---*/
@@ -51,7 +52,7 @@ int dissect_rrc_ToTargetRNC_Container_PDU(tvbuff_t *tvb _U_, packet_info *pinfo
int dissect_rrc_TargetRNC_ToSourceRNC_Container_PDU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_);
/*--- End of included file: packet-rrc-exp.h ---*/
-#line 31 "../../asn1/rrc/packet-rrc-template.h"
+#line 32 "../../asn1/rrc/packet-rrc-template.h"
enum rrc_message_type {
RRC_MESSAGE_TYPE_INVALID = 0,
@@ -68,5 +69,9 @@ typedef struct rrc_info
{
enum rrc_message_type msgtype[MAX_RRC_FRAMES];
} rrc_info;
+/*Stores how many channels we have detected for a HS-DSCH MAC-flow*/
+#define MAX_NUM_HSDHSCH_MACDFLOW 8
+guint8 num_chans_per_flow[MAX_NUM_HSDHSCH_MACDFLOW];
+GTree * hsdsch_muxed_flows;
#endif /* PACKET_RRC_H */