aboutsummaryrefslogtreecommitdiffstats
path: root/summary.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-02 22:10:32 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-02 22:10:32 +0000
commit81178a720701445aa54030ee325f20fdfd70d285 (patch)
tree2e61ed55c7483b1dc2f6e5841d0b78ecfa7f6757 /summary.h
parent8850446d82a38b78ee2c7b3eaa8a58358de76f23 (diff)
From Jean-Michel Fayard: show in Tools:Summary window statistics about
packets that passed the current display filter, as well as about the entire capture. Document the Tools:Summary item in the man page. Update Gerald's e-mail address. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8344 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'summary.h')
-rw-r--r--summary.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/summary.h b/summary.h
index 7f03594033..92eb2575f7 100644
--- a/summary.h
+++ b/summary.h
@@ -1,13 +1,12 @@
/* summary.h
* Definitions for capture file summary data
*
- * $Id: summary.h,v 1.7 2002/02/08 10:07:34 guy Exp $
+ * $Id: summary.h,v 1.8 2003/09/02 22:10:32 guy Exp $
*
* Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
@@ -33,9 +32,12 @@ typedef struct _summary_tally {
double elapsed_time; /* seconds, with msec resolution,
includes time before first packet
and after last packet */
- int filtered_count; /* number of filtered packets */
int marked_count; /* number of marked packets */
int packet_count; /* total number of packets in trace */
+ int filtered_count; /* number of filtered packets */
+ guint32 filtered_bytes; /* total bytes in the filtered packets */
+ double filtered_start; /* time in seconds, with msec resolution */
+ double filtered_stop; /* time in seconds, with msec resolution */
const char *filename;
long file_length; /* file length in bytes */
int encap_type; /* wiretap encapsulation type */