aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_table.h
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-07 22:24:28 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-07 22:24:28 +0000
commit1994170582db980b382026078fa02304afd0985b (patch)
treeccf362dd21a2e4637bca0b9d9c7c36c9d5746dfa /gtk/hostlist_table.h
parent49e49789485d32b1b7bdf4c63b1a4a13bcfe3faf (diff)
make the packets/bytes counters 64bit integers to not wrap when using really large captures.
setting packet counter to 64bit is overkill but makes it consistent with the very similar bytes counter. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14872 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/hostlist_table.h')
-rw-r--r--gtk/hostlist_table.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/hostlist_table.h b/gtk/hostlist_table.h
index 73ae442e50..cea976aabb 100644
--- a/gtk/hostlist_table.h
+++ b/gtk/hostlist_table.h
@@ -36,10 +36,10 @@ typedef struct _hostlist_talker_t {
guint32 port_type; /**< port_type (e.g. PT_TCP) */
guint32 port; /**< port */
- guint32 rx_frames; /**< number of received packets */
- guint32 tx_frames; /**< number of transmitted packets */
- guint32 rx_bytes; /**< number of received bytes */
- guint32 tx_bytes; /**< number of transmitted bytes */
+ guint64 rx_frames; /**< number of received packets */
+ guint64 tx_frames; /**< number of transmitted packets */
+ guint64 rx_bytes; /**< number of received bytes */
+ guint64 tx_bytes; /**< number of transmitted bytes */
} hostlist_talker_t;
/** Hostlist widget */