aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.h
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-04-06 13:30:45 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-04-06 13:30:45 +0000
commit0834b09ca282fd851a7a55a4e8a71a8afe1a0487 (patch)
treebaf752dfbbeb55b6781aa68da345a3659319ad61 /epan/dissectors/packet-rtcp.h
parent2fbe9526945880044247965f62daa9d9cf12c889 (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 svn path=/trunk/; revision=17834
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;
};