aboutsummaryrefslogtreecommitdiffstats
path: root/proto_hier_stats.h
diff options
context:
space:
mode:
authorLaurent Deniel <laurent.deniel@free.fr>2004-03-17 21:48:15 +0000
committerLaurent Deniel <laurent.deniel@free.fr>2004-03-17 21:48:15 +0000
commit50a00153ea693c9fc558df962c4068de5cdd0cf2 (patch)
tree022c2db8a16e84a4050f2cf07613846d6a904680 /proto_hier_stats.h
parent26875d5b71c384586948fd4cb327f7a210de79bb (diff)
* Protocol Hierarchy Statistics:
- store times of first and last packets in ph_stats_t - add bandwidth columns in GUI - miscellaneous code cleaning svn path=/trunk/; revision=10398
Diffstat (limited to 'proto_hier_stats.h')
-rw-r--r--proto_hier_stats.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/proto_hier_stats.h b/proto_hier_stats.h
index b5a61f94aa..55e1fade30 100644
--- a/proto_hier_stats.h
+++ b/proto_hier_stats.h
@@ -1,6 +1,6 @@
/* proto_hier_stats.h
*
- * $Id: proto_hier_stats.h,v 1.4 2002/08/28 21:00:41 jmayer Exp $
+ * $Id: proto_hier_stats.h,v 1.5 2004/03/17 21:48:15 deniel Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -39,6 +39,8 @@ typedef struct {
guint tot_packets;
guint tot_bytes;
GNode *stats_tree;
+ double first_time; /* seconds (msec resolution) of first packet */
+ double last_time; /* seconds (msec resolution) of last packet */
} ph_stats_t;