aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/graph_analysis.h
diff options
context:
space:
mode:
authorLars Roland <Lars.Roland@gmx.net>2005-02-24 21:31:20 +0000
committerLars Roland <Lars.Roland@gmx.net>2005-02-24 21:31:20 +0000
commit2ed9ca813b9caa1797b4d57e3ee15ff9acd8aaf8 (patch)
tree053f5c72ae789578ebca126129cf483a40e616a6 /gtk/graph_analysis.h
parentc348bbdf91dde2721603166004e5a11d996d3088 (diff)
By Francisco Alcoba:
Support for name resolution and IPv6 in VoIP Call Analysis svn path=/trunk/; revision=13501
Diffstat (limited to 'gtk/graph_analysis.h')
-rw-r--r--gtk/graph_analysis.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/graph_analysis.h b/gtk/graph_analysis.h
index 0f88c521f6..26a2762398 100644
--- a/gtk/graph_analysis.h
+++ b/gtk/graph_analysis.h
@@ -34,6 +34,7 @@
#include <glib.h>
#include <gtk/gtk.h>
#include "gtkglobals.h"
+#include <epan/address.h>
#define MAX_NUM_NODES 10
@@ -41,9 +42,9 @@
typedef struct _graph_analysis_item {
guint32 frame_num; /* frame number used to "go to" that frame */
double time; /* frame time */
- guint32 ip_src; /* XXX we currently support only IP v4 */
+ address src_addr;
guint16 port_src;
- guint32 ip_dst;
+ address dst_addr;
guint16 port_dst;
gchar *frame_label; /* the label on top of the arrow */
gchar *comment; /* a comment that appears at the left of the graph */
@@ -108,7 +109,7 @@ typedef struct _graph_analysis_data_t {
/* dialog associated data */
dialog_data_t dlg;
- guint32 nodes[MAX_NUM_NODES];
+ address nodes[MAX_NUM_NODES];
guint32 num_nodes;
guint32 num_items;
} graph_analysis_data_t;