aboutsummaryrefslogtreecommitdiffstats
path: root/follow.h
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-08-09 05:18:45 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-08-09 05:18:45 +0000
commit3f8d753943beb773041202bd5fa6e776ea4ed028 (patch)
treeda2f0c6fc44ac1d96a0ac8172aee923444276a58 /follow.h
parentc83d80de36c3786b4c77183fb82a7434c3399b0c (diff)
In TCP Follow window, allow the optional showing of:
Entire Conversation Client -> Server packets Server -> Client packets Have "Save As" button work as a "Print to File" button; it asks for a filename and uses the same routine that "Print" uses to save the file. What you see in the window is what you get in the file. So, you can get any of the above conversations/soliloquies combined with: ASCII EBCDIC Hex Dump svn path=/trunk/; revision=2232
Diffstat (limited to 'follow.h')
-rw-r--r--follow.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/follow.h b/follow.h
index edc0917c8a..3d6afb9dda 100644
--- a/follow.h
+++ b/follow.h
@@ -1,6 +1,6 @@
/* follow.h
*
- * $Id: follow.h,v 1.8 2000/03/12 04:26:35 guy Exp $
+ * $Id: follow.h,v 1.9 2000/08/09 05:18:38 gram Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -51,4 +51,12 @@ void reassemble_tcp( u_long, u_long, const char*, u_long, int,
address *, address *, u_int, u_int );
void reset_tcp_reassembly( void );
+typedef struct {
+ guint32 ip_address[2];
+ guint32 tcp_port[2];
+ unsigned int bytes_written[2];
+} follow_tcp_stats_t;
+
+void follow_tcp_stats(follow_tcp_stats_t* stats);
+
#endif