summaryrefslogtreecommitdiff
path: root/epan/follow.h
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2007-11-03 04:45:35 +0000
committerStephen Fisher <steve@stephen-fisher.com>2007-11-03 04:45:35 +0000
commit700d8194b8c71c80bff2a3e1acbf3a99c6569dc2 (patch)
tree67b00d2ef6bab5c1cde3d093069ef84229c91527 /epan/follow.h
parentfafa0a1c067707be8fa1d90b9603b79aff7a84d2 (diff)
downloadwireshark-700d8194b8c71c80bff2a3e1acbf3a99c6569dc2.tar.gz
- Future improve/clean up the now generic follow stream code
- Add "Follow UDP Stream" feature svn path=/trunk/; revision=23346
Diffstat (limited to 'epan/follow.h')
-rw-r--r--epan/follow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/follow.h b/epan/follow.h
index 86edbd3aca..f84e4ad960 100644
--- a/epan/follow.h
+++ b/epan/follow.h
@@ -48,11 +48,11 @@ void reset_tcp_reassembly( void );
typedef struct {
guint8 ip_address[2][MAX_IPADDR_LEN];
- guint32 tcp_port[2];
+ guint32 port[2];
unsigned int bytes_written[2];
gboolean is_ipv6;
-} follow_tcp_stats_t;
+} follow_stats_t;
-void follow_tcp_stats(follow_tcp_stats_t* stats);
+void follow_stats(follow_stats_t* stats);
#endif