aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.h
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-21 06:45:34 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2007-02-21 06:45:34 +0000
commit6d8f06d5dfabe6f29e3e0e0911209ebe005c9cbb (patch)
tree332d3945f9f86408d8c44486d4d2f69596f77646 /epan/dissectors/packet-rtp.h
parent7eed0c8c88b920cb9ce2c526e23f629f0d7f0030 (diff)
From Richard van der Hoff:
Here's a patch which adds an option enabling subdissectors to request defragmentation of packets over RTP streams, using the pinfo->desegment_{len,offset} API. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20891 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rtp.h')
-rw-r--r--epan/dissectors/packet-rtp.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtp.h b/epan/dissectors/packet-rtp.h
index e61b642480..865fbdb15f 100644
--- a/epan/dissectors/packet-rtp.h
+++ b/epan/dissectors/packet-rtp.h
@@ -58,8 +58,15 @@ struct _rtp_info {
struct _rtp_conversation_info
{
gchar method[MAX_RTP_SETUP_METHOD_SIZE + 1];
- guint32 frame_number;
+ guint32 frame_number; /* the frame where this conversation is started */
GHashTable *rtp_dyn_payload; /* a hash table with the dynamic RTP payload */
+
+ guint32 extended_seqno; /* the sequence number, extended to a 32-bit
+ * int to guarantee it increasing monotonically
+ */
+
+ struct _rtp_private_conv_info *rtp_conv_info; /* conversation info private
+ * to the rtp dissector */
};
/* Add an RTP conversation with the given details */