aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-12-01 11:54:41 +0000
committerGuy Harris <guy@alum.mit.edu>2004-12-01 11:54:41 +0000
commite4ae2aa011a652faabe2bec1ba022a1fc54f05e6 (patch)
tree57998a9f6bbe83020720b46429a044528aec1a97 /gtk/rtp_stream.h
parentffebed7a167c371d06942361b3ce981be2d317d6 (diff)
From Francisco Alcoba:
add IPv6 support; replace "delay" with "delta". svn path=/trunk/; revision=12636
Diffstat (limited to 'gtk/rtp_stream.h')
-rw-r--r--gtk/rtp_stream.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk/rtp_stream.h b/gtk/rtp_stream.h
index fa4f7278ee..e34e9f1215 100644
--- a/gtk/rtp_stream.h
+++ b/gtk/rtp_stream.h
@@ -30,6 +30,7 @@
#include <glib.h>
#include <stdio.h>
+#include <epan/address.h>
/** @file
* ???
@@ -55,9 +56,9 @@ typedef rtp_sample_t* rtp_sample_p;
/* defines an rtp stream */
typedef struct _rtp_stream_info {
- guint32 src_addr;
+ address src_addr;
guint16 src_port;
- guint32 dest_addr;
+ address dest_addr;
guint16 dest_port;
guint32 ssrc;
guint8 pt;
@@ -98,6 +99,7 @@ typedef struct _rtpstream_tapinfo {
gboolean is_registered; /* if the tap listener is currently registered or not */
} rtpstream_tapinfo_t;
+gchar* address_to_str_w_none(address *addr);
/****************************************************************************/
/* INTERFACE */