aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.h
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-rtcp.h')
-rw-r--r--epan/dissectors/packet-rtcp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rtcp.h b/epan/dissectors/packet-rtcp.h
index 646a21b565..89c9a13a5d 100644
--- a/epan/dissectors/packet-rtcp.h
+++ b/epan/dissectors/packet-rtcp.h
@@ -49,6 +49,9 @@ struct _rtcp_conversation_info
guint32 calculated_delay_used_frame;
gint calculated_delay_report_gap;
gint32 calculated_delay;
+
+ /* SRTCP context */
+ struct srtp_info *srtcp_info;
};
@@ -57,3 +60,10 @@ void rtcp_add_address(packet_info *pinfo,
address *addr, int port,
int other_port,
const gchar *setup_method, guint32 setup_frame_number);
+
+/* Add an SRTP conversation with the given details */
+void srtcp_add_address(packet_info *pinfo,
+ address *addr, int port,
+ int other_port,
+ const gchar *setup_method, guint32 setup_frame_number,
+ struct srtp_info *srtcp_info);