aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2010-11-06 19:22:16 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2010-11-06 19:22:16 +0000
commit796dc8927cc5f1ac17c95c160a99ce2b154ffc24 (patch)
tree2333b4012c08d635e81346c25c5ba2d4c1260e8d /epan
parent3adfed802236f1690cff6e6be5a53b6241dc1d74 (diff)
Use guint16 after all, to avoid breaking the UDP framing protocol.
8 bits are enough though... svn path=/trunk/; revision=34798
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-pdcp-lte.h2
-rw-r--r--epan/dissectors/packet-rlc-lte.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-pdcp-lte.h b/epan/dissectors/packet-pdcp-lte.h
index 47ccbd1ede..a6ce31cec7 100644
--- a/epan/dissectors/packet-pdcp-lte.h
+++ b/epan/dissectors/packet-pdcp-lte.h
@@ -70,7 +70,7 @@ typedef struct pdcp_lte_info
guint8 direction;
guint16 ueid;
LogicalChannelType channelType;
- guint8 channelId;
+ guint16 channelId;
BCCHTransportType BCCHTransport;
/* Details of PDCP header */
diff --git a/epan/dissectors/packet-rlc-lte.h b/epan/dissectors/packet-rlc-lte.h
index 2e5c97dbd5..8e8fe4a6a0 100644
--- a/epan/dissectors/packet-rlc-lte.h
+++ b/epan/dissectors/packet-rlc-lte.h
@@ -52,8 +52,8 @@ typedef struct rlc_lte_info
guint8 direction;
guint8 priority;
guint16 ueid;
- guint8 channelType;
- guint8 channelId;
+ guint16 channelType;
+ guint16 channelId;
guint16 pduLength;
guint8 UMSequenceNumberLength;
} rlc_lte_info;