From 13d94b62937c7830b6a2a2dda7e510414ab27d9b Mon Sep 17 00:00:00 2001 From: etxrab Date: Thu, 5 Nov 2009 21:54:06 +0000 Subject: 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 --- epan/dissectors/packet-umts_fp.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'epan/dissectors/packet-umts_fp.h') 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; -- cgit v1.2.3