summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-umts_fp.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-11-05 21:54:06 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-11-05 21:54:06 +0000
commit54aa776069b8e66d222ef3a9721249e97d02b287 (patch)
tree52abded55d5e57d0d26a73773e1785c32b95fe29 /epan/dissectors/packet-umts_fp.h
parent110a5be310239218a3015999a0ec979ece02d1bc (diff)
downloadwireshark-54aa776069b8e66d222ef3a9721249e97d02b287.tar.gz
From Tobias Witek:
w protocols: UMTS RLC (ETSI TS 125 322), UMTS MAC (ETSI TS 125 321) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3495 svn path=/trunk/; revision=30838
Diffstat (limited to 'epan/dissectors/packet-umts_fp.h')
-rw-r--r--epan/dissectors/packet-umts_fp.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/epan/dissectors/packet-umts_fp.h b/epan/dissectors/packet-umts_fp.h
index e496229d7d..4c2fa4ba0c 100644
--- a/epan/dissectors/packet-umts_fp.h
+++ b/epan/dissectors/packet-umts_fp.h
@@ -63,6 +63,13 @@ enum fp_hsdsch_entity
ehs=2
};
+enum fp_link_type
+{
+ FP_Link_Unknown,
+ FP_Link_ATM,
+ FP_Link_Ethernet,
+};
+
/* Info attached to each FP packet */
typedef struct fp_info
{
@@ -85,6 +92,10 @@ typedef struct fp_info
guint8 edch_ddi[MAX_EDCH_DDIS];
guint edch_macd_pdu_size[MAX_EDCH_DDIS];
+ gint cur_tb; /* current transport block (required for dissecting of single TBs */
+ gint cur_chan; /* current channel, required to retrieve the correct channel configuration for UMTS MAC */
+
enum fp_hsdsch_entity hsdsch_entity;
+ enum fp_link_type link_type;
} fp_info;