aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtp.h
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-03-06 20:35:12 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-03-06 20:35:12 +0000
commit75a2c3f1cfc286e26b81aa6ae08df0574ed5d44b (patch)
tree60140247abb38a83b9594704bc9e1b4759186e00 /packet-rtp.h
parentbfd655262f2aa6500c4115c703a228b4360031fc (diff)
From Miha Jemec :
Functionality to reassemble a RTP stream and save it as a file. Support for G.711 coded git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7297 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-rtp.h')
-rw-r--r--packet-rtp.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/packet-rtp.h b/packet-rtp.h
index 4eecb3d26f..bd9dd96772 100644
--- a/packet-rtp.h
+++ b/packet-rtp.h
@@ -3,7 +3,7 @@
* Routines for RTP dissection
* RTP = Real time Transport Protocol
*
- * $Id: packet-rtp.h,v 1.7 2002/08/28 21:00:30 jmayer Exp $
+ * $Id: packet-rtp.h,v 1.8 2003/03/06 20:35:09 sahlberg Exp $
*
* Copyright 2000, Philips Electronics N.V.
* Written by Andreas Sikkema <andreas.sikkema@philips.com>
@@ -27,5 +27,16 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+struct _rtp_info {
+ gboolean info_padding_set;
+ gboolean info_marker_set;
+ unsigned int info_payload_type;
+ unsigned int info_padding_count;
+ guint16 info_seq_num;
+ guint32 info_timestamp;
+ guint32 info_sync_src;
+ guint info_data_len;
+};
+
void rtp_add_address ( packet_info *pinfo, const unsigned char* ip_addr, int prt );
void proto_register_rtp( void );