aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2019-11-19 13:42:53 -0800
committerGuy Harris <guy@alum.mit.edu>2019-11-19 22:03:52 +0000
commit141e2ffcf03640bf270b37a08d6a265685cf7563 (patch)
treedee51eb886a5d43a491c5aa49b4a481b87d5908c /ui/qt
parentfc18fbd522bf32d0f86434eee910ff4b4204fa13 (diff)
Note that Qt imposes a maximum frame number of 2^31-1.
Nothing in libwireshark limits frame numbers to 2^31-1 - they're stored as unsigned ints and thus can go up to 2^32-1. That doesn't fit with the way QTreeView works, as the model is ultimately from a subclass of QAbstractItemModel, and that uses ints, not unsigned ints, for row numbers. Change-Id: I174c3ccdb5e86ea5897643560936c301fcc78c54 Reviewed-on: https://code.wireshark.org/review/35141 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/packet_list.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/qt/packet_list.h b/ui/qt/packet_list.h
index eaaabbab18..28033b5af1 100644
--- a/ui/qt/packet_list.h
+++ b/ui/qt/packet_list.h
@@ -28,6 +28,13 @@ class OverlayScrollBar;
class QAction;
class QTimerEvent;
+//
+// XXX - Wireshark supports up to 2^32-1 packets in a capture, but
+// row numbers in a QAbstractItemModel are ints, not unsigned ints,
+// so we can only have 2^31-1 rows on ILP32, LP64, and LLP64 platforms.
+// Does that mean we're permanently stuck at a maximum of 2^31-1 packets
+// per capture?
+//
class PacketList : public QTreeView
{
Q_OBJECT