aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-04-18 22:05:56 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-04-18 22:05:56 +0000
commit7ee0db108058625bbea758f20373db0df32c2613 (patch)
tree253fc99732b4bb575935f068018ed6ab36e82d44 /gtk/main.c
parent207fcef3131d7b4f6a5dcb4889e78870da21c6a1 (diff)
statusbar changes:
-show the current capture file size, if capturing in real time mode. -move the packet "Drops" count (if available) from file to packets statusbar part svn path=/trunk/; revision=14130
Diffstat (limited to 'gtk/main.c')
-rw-r--r--gtk/main.c57
1 files changed, 44 insertions, 13 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 9447b6a992..31dbd842f6 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -846,8 +846,13 @@ void packets_bar_update(void)
/* do we have any packets? */
if(cfile.count) {
- packets_str = g_strdup_printf(" P: %u D: %u M: %u",
- cfile.count, cfile.displayed_count, cfile.marked_count);
+ if(cfile.drops_known) {
+ packets_str = g_strdup_printf(" P: %u D: %u M: %u Drops: %u",
+ cfile.count, cfile.displayed_count, cfile.marked_count, cfile.drops);
+ } else {
+ packets_str = g_strdup_printf(" P: %u D: %u M: %u",
+ cfile.count, cfile.displayed_count, cfile.marked_count);
+ }
} else {
packets_str = g_strdup(" No Packets");
}
@@ -1181,8 +1186,7 @@ set_display_filename(capture_file *cf)
{
const gchar *name_ptr;
size_t msg_len;
- static const gchar done_fmt_nodrops[] = " File: %s %s %02u:%02u:%02u";
- static const gchar done_fmt_drops[] = " File: %s %s %02u:%02u:%02u Drops: %u";
+ static const gchar done_fmt[] = " File: %s %s %02u:%02u:%02u";
gchar *done_msg;
gchar *win_name_fmt = "%s - Ethereal";
gchar *win_name;
@@ -1200,16 +1204,11 @@ set_display_filename(capture_file *cf)
} else if (cf->f_len/1024 > 10) {
size_str = g_strdup_printf("%ld KB", cf->f_len/1024);
} else {
- size_str = g_strdup_printf("%ld bytes", cf->f_len);
+ size_str = g_strdup_printf("%ld Bytes", cf->f_len);
}
- if (cf->drops_known) {
- done_msg = g_strdup_printf(done_fmt_drops, name_ptr, size_str,
- cf->esec/3600, cf->esec%3600/60, cf->esec%60, cf->drops);
- } else {
- done_msg = g_strdup_printf(done_fmt_nodrops, name_ptr, size_str,
- cf->esec/3600, cf->esec%3600/60, cf->esec%60);
- }
+ done_msg = g_strdup_printf(done_fmt, name_ptr, size_str,
+ cf->esec/3600, cf->esec%3600/60, cf->esec%60);
g_free(size_str);
statusbar_push_file_msg(done_msg);
g_free(done_msg);
@@ -1305,7 +1304,8 @@ main_cf_cb_live_capture_update_started(capture_options *capture_opts)
set_menus_for_captured_packets(TRUE);
capture_msg = g_strdup_printf(" %s: <live capture in progress> to file: %s",
- get_interface_descriptive_name(capture_opts->iface), capture_opts->save_file);
+ get_interface_descriptive_name(capture_opts->iface),
+ (capture_opts->save_file) ? capture_opts->save_file : "");
statusbar_push_file_msg(capture_msg);
@@ -1316,6 +1316,34 @@ main_cf_cb_live_capture_update_started(capture_options *capture_opts)
}
static void
+main_cf_cb_live_capture_update_continue(capture_file *cf)
+{
+ gchar *capture_msg;
+
+
+ statusbar_pop_file_msg();
+
+ if (cf->f_len/1024/1024 > 10) {
+ capture_msg = g_strdup_printf(" %s: <live capture in progress> File: %s %ld MB",
+ get_interface_descriptive_name(capture_opts->iface),
+ capture_opts->save_file,
+ cf->f_len/1024/1024);
+ } else if (cf->f_len/1024 > 10) {
+ capture_msg = g_strdup_printf(" %s: <live capture in progress> File: %s %ld KB",
+ get_interface_descriptive_name(capture_opts->iface),
+ capture_opts->save_file,
+ cf->f_len/1024);
+ } else {
+ capture_msg = g_strdup_printf(" %s: <live capture in progress> File: %s %ld Bytes",
+ get_interface_descriptive_name(capture_opts->iface),
+ capture_opts->save_file,
+ cf->f_len);
+ }
+
+ statusbar_push_file_msg(capture_msg);
+}
+
+static void
main_cf_cb_live_capture_update_finished(capture_file *cf)
{
/* Pop the "<live capture in progress>" message off the status bar. */
@@ -1471,6 +1499,9 @@ void main_cf_callback(gint event, gpointer data, gpointer user_data _U_)
case(cf_cb_live_capture_update_started):
main_cf_cb_live_capture_update_started(data);
break;
+ case(cf_cb_live_capture_update_continue):
+ main_cf_cb_live_capture_update_continue(data);
+ break;
case(cf_cb_live_capture_fixed_started):
main_cf_cb_live_capture_fixed_started(data);
break;