aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.h
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-05 23:34:11 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-05 23:34:11 +0000
commit6ee585c648159e3267eca67099edf85eb89bf89b (patch)
treed752728c53194713aee50ff512eb1e957d4d68a4 /epan/dissectors/packet-mac-lte.h
parent62a2c18b70b049019c4b9c9e303030fe329279d6 (diff)
Add more PHY attributes to MAC frames.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35125 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-mac-lte.h')
-rw-r--r--epan/dissectors/packet-mac-lte.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mac-lte.h b/epan/dissectors/packet-mac-lte.h
index 6ebfa44bfc..5794d12fb6 100644
--- a/epan/dissectors/packet-mac-lte.h
+++ b/epan/dissectors/packet-mac-lte.h
@@ -81,7 +81,8 @@ typedef enum mac_lte_crc_status {
crc_fail = 0,
crc_success = 1,
crc_high_code_rate = 2,
- crc_pdsch_lost = 3
+ crc_pdsch_lost = 3,
+ crc_duplicate_nonzero_rv = 4
} mac_lte_crc_status;
/* Context info attached to each LTE MAC frame */
@@ -114,6 +115,8 @@ typedef struct mac_lte_info
guint8 tbs_index;
guint8 resource_block_length;
guint8 resource_block_start;
+ guint8 harq_id;
+ gboolean ndi;
} ul_info;
struct mac_lte_dl_phy_info
{
@@ -127,6 +130,7 @@ typedef struct mac_lte_info
mac_lte_crc_status crc_status;
guint8 harq_id;
gboolean ndi;
+ guint8 transport_block; /* 1-4 */
} dl_info;
} detailed_phy_info;