aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-07-08 16:54:18 +0000
committerGerald Combs <gerald@wireshark.org>2013-07-08 16:54:18 +0000
commit59644b38992b5ec556fcba348a4f3452199dbc2d (patch)
treecd42e84c3438a0903a94391e315bc4141d129fd3 /epan/conversation.h
parent5b7c3b31051c112c3ffa9e43d9e9fe701d028978 (diff)
New Qt feature: Show related packet list items in the frame number
column. Conversation spans (setup frame to last frame) are shown with a square bracket. Linked frames are shown with a circle. Use correct column justifications in Qt. Move common justification-related packet list code to ui/packet_list_utils.[ch]. Add a last_frame element to conversation_t. svn path=/trunk/; revision=50447
Diffstat (limited to 'epan/conversation.h')
-rw-r--r--epan/conversation.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/conversation.h b/epan/conversation.h
index 3a019c6be8..fef0b9d7fa 100644
--- a/epan/conversation.h
+++ b/epan/conversation.h
@@ -78,6 +78,8 @@ typedef struct conversation {
/** pointer to the last conversation on hash chain */
guint32 index; /** unique ID for conversation */
guint32 setup_frame; /** frame number that setup this conversation */
+ /* Assume that setup_frame is also the lowest frame number for now. */
+ guint32 last_frame; /** highest frame number in this conversation */
GSList *data_list; /** list of data associated with conversation */
dissector_handle_t dissector_handle;
/** handle for protocol dissector client associated with conversation */