aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation_table.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-11-25 12:39:53 +0100
committerEvan Huus <eapache@gmail.com>2014-11-26 03:33:16 +0000
commit85ca1cff521e6f8d9ed83f13af2b76b928baee69 (patch)
treeb8f44678025264859aff8be7cfbc0a226942c0b7 /epan/conversation_table.h
parentf449be8e6b2b1e86c873a93e854ac293dc062eac (diff)
conversation_table: fix indent (use 4spaces) and add modelines info
Change-Id: I76784f0252dcd095a3016ed014632e2a5c09265b Reviewed-on: https://code.wireshark.org/review/5483 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/conversation_table.h')
-rw-r--r--epan/conversation_table.h31
1 files changed, 22 insertions, 9 deletions
diff --git a/epan/conversation_table.h b/epan/conversation_table.h
index 8b8c587c25..6dddc806ae 100644
--- a/epan/conversation_table.h
+++ b/epan/conversation_table.h
@@ -123,7 +123,7 @@ typedef struct _conversation_item_t {
nstime_t start_time; /**< relative start time for the conversation */
nstime_t stop_time; /**< relative stop time for the conversation */
- nstime_t start_abs_time; /**< absolute start time for the conversation */
+ nstime_t start_abs_time; /**< absolute start time for the conversation */
gboolean modified; /**< new to redraw the row (only used in GTK+) */
} conv_item_t;
@@ -131,16 +131,16 @@ typedef struct _conversation_item_t {
/** Hostlist information */
typedef struct _hostlist_talker_t {
hostlist_dissector_info_t *dissector_info; /**< conversation information provided by dissector */
- address myaddress; /**< address */
- port_type ptype; /**< port_type (e.g. PT_TCP) */
- guint32 port; /**< port */
+ address myaddress; /**< address */
+ port_type ptype; /**< port_type (e.g. PT_TCP) */
+ guint32 port; /**< port */
- 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 */
+ 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 */
- gboolean modified; /**< new to redraw the row */
+ gboolean modified; /**< new to redraw the row */
} hostlist_talker_t;
@@ -349,3 +349,16 @@ void add_hostlist_table_data(conv_hash_t *ch, const address *addr,
#endif /* __cplusplus */
#endif /* __CONVERSATION_TABLE_H__ */
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */