aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-umts_fp.h
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-05 21:54:06 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-11-05 21:54:06 +0000
commit13d94b62937c7830b6a2a2dda7e510414ab27d9b (patch)
tree52abded55d5e57d0d26a73773e1785c32b95fe29 /epan/dissectors/packet-umts_fp.h
parentb08ee26762d21dcf008676d83ffccfdf461bf4af (diff)
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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30838 f5534014-38df-0310-8fa8-9805f1628bb7
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;