diff options
author | Anders Broman <anders.broman@ericsson.com> | 2012-03-15 14:33:04 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2012-03-15 14:33:04 +0000 |
commit | fb0fec7c1c2642d9998cfb5645964b2a59be1726 (patch) | |
tree | 12bfc3cf8a37eba5a5ab1a1dcdab052deade3c74 /summary.h | |
parent | a88ab3eccfa467b62f75ba2d5144071a2204c34d (diff) | |
download | wireshark-fb0fec7c1c2642d9998cfb5645964b2a59be1726.tar.gz wireshark-fb0fec7c1c2642d9998cfb5645964b2a59be1726.tar.bz2 wireshark-fb0fec7c1c2642d9998cfb5645964b2a59be1726.zip |
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.h | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -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 */ |