aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.h
diff options
context:
space:
mode:
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-15 17:51:19 +0000
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-15 17:51:19 +0000
commitacadd9476a35846378d8c86397bc745a8d12daf8 (patch)
tree73c1b4e0769073a47d4047adc811d81086e1e082 /epan/dissectors/packet-mac-lte.h
parentc28042a230dd98bd7a114096ff109d1cf7a11096 (diff)
Declare sip_uri_offset_init() as returning void and remove a couple unused variables
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32195 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-mac-lte.h')
-rw-r--r--epan/dissectors/packet-mac-lte.h25
1 files changed, 24 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mac-lte.h b/epan/dissectors/packet-mac-lte.h
index b50178c83f..3fde9491d8 100644
--- a/epan/dissectors/packet-mac-lte.h
+++ b/epan/dissectors/packet-mac-lte.h
@@ -87,8 +87,31 @@ typedef struct mac_lte_info
guint16 length;
guint8 reTxCount;
guint8 crcStatusValid;
- guint8 crcStatus;
+ /* More Physical layer info (direction-specific) */
+ union {
+ struct mac_lte_ul_phy_info
+ {
+ guint8 present;
+ guint8 modulation_type;
+ guint8 tbs_index;
+ guint8 resource_block_length;
+ guint8 resource_block_start;
+ } ul_info;
+ struct mac_lte_dl_phy_info
+ {
+ guint8 present;
+ guint8 dci_format;
+ guint8 resource_allocation_type;
+ guint8 aggregation_level;
+ guint8 mcs_index;
+ guint8 redundancy_version_index;
+ guint8 retx;
+ guint8 resource_block_length;
+ guint8 crc_status;
+ } dl_info;
+ } detailed_phy_info;
+
/* Relating to out-of-band events */
mac_lte_oob_event oob_event;
guint8 rapid;