aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.h
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-04 17:33:48 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-04 17:33:48 +0000
commit8cd8e2323908ae7297ddb0f5acb437fc1550168b (patch)
treed134319eba21e6f0d1746d4f5674af54eaccb408 /epan/dissectors/packet-umts_fp.h
parent4a1fab393285ffa5648e7f4c9472afd74c81a256 (diff)
- Make FP radio division mode/speed explicit in struct for R7
- Various R7 fixes git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25425 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-umts_fp.h')
-rw-r--r--epan/dissectors/packet-umts_fp.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/epan/dissectors/packet-umts_fp.h b/epan/dissectors/packet-umts_fp.h
index a10f75723a..e496229d7d 100644
--- a/epan/dissectors/packet-umts_fp.h
+++ b/epan/dissectors/packet-umts_fp.h
@@ -40,7 +40,7 @@
#define CHANNEL_IUR_FACH 15
#define CHANNEL_IUR_DSCH 16
#define CHANNEL_EDCH 17
-#define CHANNEL_RACH_TDD_128 65
+#define CHANNEL_RACH_TDD_128 66
enum fp_interface_type
{
@@ -48,6 +48,14 @@ enum fp_interface_type
IuR_Interface
};
+enum division_type
+{
+ Division_FDD=1,
+ Division_TDD_384=2,
+ Division_TDD_128=3,
+ Division_TDD_768=4
+};
+
enum fp_hsdsch_entity
{
entity_not_specified=0,
@@ -59,7 +67,8 @@ enum fp_hsdsch_entity
typedef struct fp_info
{
enum fp_interface_type iface_type;
- guint8 release; /* e.g. 99, 4, 5, 6 */
+ enum division_type division;
+ guint8 release; /* e.g. 99, 4, 5, 6, 7 */
guint16 release_year; /* e.g. 2001 */
guint8 release_month; /* e.g. 12 for December */
gboolean is_uplink;