aboutsummaryrefslogtreecommitdiffstats
path: root/epan/frame_data.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-11 22:25:33 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-11 22:25:33 +0000
commitd0c5e2c547cea72b6c9dbb9100ae9f6967dd0e2d (patch)
tree921a697c78e514c52d1a5ff85ed6f3e0b880dca0 /epan/frame_data.h
parent0cf90c83a65ebc927011d54241f9d751693bb584 (diff)
Frame numbers are unsigned, and they start at 1; 0 is what's used for
"unknown" for frame numbers. Note that in epan/frame_data.h, and make the frame number in experts unsigned, and use 0 for "unknown", and display it as an unsigned number - and, if it's 0, don't display it at all. Fix the signature of "expert_dlg_draw()" to match what a tap's draw routine's signature is expected to be. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15760 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/frame_data.h')
-rw-r--r--epan/frame_data.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/frame_data.h b/epan/frame_data.h
index db6d5034a4..3b61c06e3e 100644
--- a/epan/frame_data.h
+++ b/epan/frame_data.h
@@ -44,6 +44,9 @@ typedef struct _color_t /* {
/* XXX - some of this stuff is used only while a packet is being dissected;
should we keep that stuff in the "packet_info" structure, instead, to
save memory? */
+/* The frame number is the ordinal number of the frame in the capture, so
+ it's 1-origin. In various contexts, 0 as a frame number means "frame
+ number unknown". */
typedef struct _frame_data {
struct _frame_data *next; /* Next element in list */
struct _frame_data *prev; /* Previous element in list */