aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.h
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-06 13:30:45 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2006-04-06 13:30:45 +0000
commitb4316a55dfd20baa9064487557fe01fd2d0ceb79 (patch)
treebaf752dfbbeb55b6781aa68da345a3659319ad61 /epan/dissectors/packet-rtcp.h
parent0424f1950d614ebae71db002ecbd3f7ce6cdda30 (diff)
From: Martin Mathieson
- fixes bug 863 (RTCP sender report's NTP time display incorrect - use using wrong bytes) - makes NTP timestamp MSW and LSW proper filterable fields, displaying them in dec and hex - when doing roundtrip calculations, rationalise fields added, add link to LSR frame whenever it matches git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17834 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rtcp.h')
-rw-r--r--epan/dissectors/packet-rtcp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-rtcp.h b/epan/dissectors/packet-rtcp.h
index d09f5fb8cc..54a8420a49 100644
--- a/epan/dissectors/packet-rtcp.h
+++ b/epan/dissectors/packet-rtcp.h
@@ -39,13 +39,13 @@ struct _rtcp_conversation_info
guint32 setup_frame_number;
/* Info used for roundtrip calculations */
- guchar last_received_set;
- guint32 last_received_frame_number;
+ guchar last_received_set;
+ guint32 last_received_frame_number;
nstime_t last_received_timestamp;
- guint32 last_received_ts;
+ guint32 last_received_ts;
- /* Stored result of calculation (ms) */
- guchar calculated_delay_set;
+ /* Stored result of calculation */
+ guchar lsr_matched;
guint32 calculated_delay_used_frame;
guint32 calculated_delay;
};