aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.h
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-03 04:45:35 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-03 04:45:35 +0000
commitff6826fcd9d9cc3ff493fabf2ce7542734be322e (patch)
tree67b00d2ef6bab5c1cde3d093069ef84229c91527 /epan/follow.h
parenta1da43a84734f18a2838a9bfa0a01a2c351b9416 (diff)
- Future improve/clean up the now generic follow stream code
- Add "Follow UDP Stream" feature git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23346 f5534014-38df-0310-8fa8-9805f1628bb7
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