aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rlc-lte.h
diff options
context:
space:
mode:
authormartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-06 19:22:16 +0000
committermartinm <martinm@f5534014-38df-0310-8fa8-9805f1628bb7>2010-11-06 19:22:16 +0000
commitf0485db82c837ddffc8a65dacd820cde789347b9 (patch)
tree2333b4012c08d635e81346c25c5ba2d4c1260e8d /epan/dissectors/packet-rlc-lte.h
parent4dc685903eda9b0140ef7a8723178d0b76bd2c40 (diff)
Use guint16 after all, to avoid breaking the UDP framing protocol.
8 bits are enough though... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34798 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rlc-lte.h')
-rw-r--r--epan/dissectors/packet-rlc-lte.h4
1 files changed, 2 insertions, 2 deletions
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;