aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2018-12-03 15:04:51 +0100
committerAnders Broman <a.broman58@gmail.com>2018-12-03 17:01:03 +0000
commit228da02fda4d7d81a2b00fe73ed28cce718cb5ef (patch)
tree6df7bd265cd62c0df21c5dcbdd6c337af4fbdd1e /epan/dissectors/packet-rtp.h
parent8bd0616621effc9bd638b192227a2792f6644254 (diff)
RTP: Restructure call id handling.
Change-Id: Id5471ad6e7051a7e00fd82d25d58912ef8ad886e Reviewed-on: https://code.wireshark.org/review/30898 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rtp.h')
-rw-r--r--epan/dissectors/packet-rtp.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/epan/dissectors/packet-rtp.h b/epan/dissectors/packet-rtp.h
index eccdfb0c4a..197d4cd4b3 100644
--- a/epan/dissectors/packet-rtp.h
+++ b/epan/dissectors/packet-rtp.h
@@ -167,26 +167,26 @@ void rtp_dyn_payload_free(rtp_dyn_payload_t *rtp_dyn_payload);
void rtp_dump_dyn_payload(rtp_dyn_payload_t *rtp_dyn_payload);
#endif
-/* Info to save in RTP conversation / packet-info */
+/** Info to save in RTP conversation / packet-info */
#define MAX_RTP_SETUP_METHOD_SIZE 11
struct _rtp_conversation_info
{
- gchar method[MAX_RTP_SETUP_METHOD_SIZE + 1];
- guint32 frame_number; /* the frame where this conversation is started */
- guint32 media_types;
- rtp_dyn_payload_t *rtp_dyn_payload; /* the dynamic RTP payload info - see comments above */
-
- 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
- */
- struct srtp_info *srtp_info; /* SRTP context */
- bta2dp_codec_info_t *bta2dp_info;
- btvdp_codec_info_t *btvdp_info;
- sdp_setup_info_t *setup_info;
+ gchar method[MAX_RTP_SETUP_METHOD_SIZE + 1];
+ guint32 frame_number; /**> the frame where this conversation is started */
+ guint32 media_types;
+ rtp_dyn_payload_t *rtp_dyn_payload; /**> the dynamic RTP payload info - see comments above */
+
+ 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
+ */
+ struct srtp_info *srtp_info; /* SRTP context */
+ bta2dp_codec_info_t *bta2dp_info;
+ btvdp_codec_info_t *btvdp_info;
+ wmem_array_t *rtp_sdp_setup_info_list; /**> List with data from all SDP occurencies for this steram holding a call ID)*/
};
/* Add an RTP conversation with the given details */