summaryrefslogtreecommitdiff
path: root/summary.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-03-15 14:33:04 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-03-15 14:33:04 +0000
commitfb0fec7c1c2642d9998cfb5645964b2a59be1726 (patch)
tree12bfc3cf8a37eba5a5ab1a1dcdab052deade3c74 /summary.h
parenta88ab3eccfa467b62f75ba2d5144071a2204c34d (diff)
downloadwireshark-fb0fec7c1c2642d9998cfb5645964b2a59be1726.tar.gz
If we have one ISB, display the droped count from it.
svn path=/trunk/; revision=41561
Diffstat (limited to 'summary.h')
-rw-r--r--summary.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/summary.h b/summary.h
index a1d062e6a1..f359990345 100644
--- a/summary.h
+++ b/summary.h
@@ -33,17 +33,18 @@ typedef struct iface_options_tag {
char *name;
char *descr;
char *cfilter;
- guint64 drops; /* number of packet drops */
- gboolean drops_known; /* TRUE if number of packet drops is known */
- gboolean has_snap; /* TRUE if maximum capture packet length is known */
- int snap; /* Maximum captured packet length */
- int linktype; /* wiretap encapsulation type */
+ char *isb_comment;
+ guint64 drops; /**< number of packet drops */
+ gboolean drops_known; /**< TRUE if number of packet drops is known */
+ gboolean has_snap; /**< TRUE if maximum capture packet length is known */
+ int snap; /**< Maximum captured packet length */
+ int linktype; /**< wiretap encapsulation type */
} iface_options;
typedef struct _summary_tally {
- guint64 bytes; /**< total bytes */
- double start_time; /**< seconds, with msec resolution */
- double stop_time; /**< seconds, with msec resolution */
+ guint64 bytes; /**< total bytes */
+ double start_time; /**< seconds, with msec resolution */
+ double stop_time; /**< seconds, with msec resolution */
double elapsed_time; /**< seconds, with msec resolution,
includes time before first packet
and after last packet */