aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.h
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2013-04-15 20:56:49 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2013-04-15 20:56:49 +0000
commit08c91ded8abf4bc5374694b80199cf338fb81298 (patch)
treebd229f4849e23dcb4cc55ffa6ad3e71770dbd17a /epan/dissectors/packet-mac-lte.h
parentcd7796a6ef9086f872e3fbcef03f73e169ea182d (diff)
Add a context field for the carrierId.
svn path=/trunk/; revision=48859
Diffstat (limited to 'epan/dissectors/packet-mac-lte.h')
-rw-r--r--epan/dissectors/packet-mac-lte.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/epan/dissectors/packet-mac-lte.h b/epan/dissectors/packet-mac-lte.h
index 09931736a6..1d16e78a3e 100644
--- a/epan/dissectors/packet-mac-lte.h
+++ b/epan/dissectors/packet-mac-lte.h
@@ -89,6 +89,14 @@ typedef enum mac_lte_crc_status {
crc_false_dci = 5
} mac_lte_crc_status;
+typedef enum mac_lte_carrier_id {
+ carrier_id_primary,
+ carrier_id_secondary_1,
+ carrier_id_secondary_2,
+ carrier_id_secondary_3,
+ carrier_id_secondary_4,
+} mac_lte_carrier_id;
+
/* Context info attached to each LTE MAC frame */
typedef struct mac_lte_info
{
@@ -126,6 +134,9 @@ typedef struct mac_lte_info
/* DL only. Status of CRC check */
mac_lte_crc_status crcStatusValid;
+ /* Carrier ID */
+ mac_lte_carrier_id carrierId;
+
/* DL only. Is this known to be a retransmission? */
mac_lte_dl_retx dl_retx;