aboutsummaryrefslogtreecommitdiffstats
path: root/capture_loop.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-12-03 12:56:57 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-12-03 12:56:57 +0000
commit6674e5bf12f2794ba3b5710ef72b6410e14c5d6e (patch)
tree53bad8f40f7804b46409510e0269272e3865196b /capture_loop.c
parent6137748c0538cee28122fd5587cefdb7eb560e91 (diff)
the function capture_loop_popup_errmsg seems to be useless and misleading,
simply call sync_pipe_errmsg_to_parent directly instead svn path=/trunk/; revision=16662
Diffstat (limited to 'capture_loop.c')
-rw-r--r--capture_loop.c25
1 files changed, 8 insertions, 17 deletions
diff --git a/capture_loop.c b/capture_loop.c
index fa01efd8a2..77e6ad2f86 100644
--- a/capture_loop.c
+++ b/capture_loop.c
@@ -184,7 +184,6 @@ typedef struct _loop_data {
static void capture_loop_packet_cb(u_char *user, const struct pcap_pkthdr *phdr,
const u_char *pd);
-static void capture_loop_popup_errmsg(capture_options *capture_opts, const char *errmsg);
static void capture_loop_get_errmsg(char *errmsg, int errmsglen, const char *fname,
int err, gboolean is_close);
@@ -924,7 +923,7 @@ capture_loop_dispatch(capture_options *capture_opts, loop_data *ld,
if (sel_ret < 0 && errno != EINTR) {
g_snprintf(errmsg, errmsg_len,
"Unexpected error from select: %s", strerror(errno));
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
ld->go = FALSE;
}
} else {
@@ -1004,7 +1003,7 @@ capture_loop_dispatch(capture_options *capture_opts, loop_data *ld,
if (sel_ret < 0 && errno != EINTR) {
g_snprintf(errmsg, errmsg_len,
"Unexpected error from select: %s", strerror(errno));
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
ld->go = FALSE;
}
}
@@ -1461,11 +1460,11 @@ capture_loop_start(capture_options *capture_opts, gboolean *stats_known, struct
if (ld.pcap_err) {
g_snprintf(errmsg, sizeof(errmsg), "Error while capturing packets: %s",
pcap_geterr(ld.pcap_h));
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
}
#ifndef _WIN32
else if (ld.from_cap_pipe && ld.cap_pipe_err == PIPERR)
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
#endif
/* did we had an error while capturing? */
@@ -1474,7 +1473,7 @@ capture_loop_start(capture_options *capture_opts, gboolean *stats_known, struct
} else {
capture_loop_get_errmsg(errmsg, sizeof(errmsg), capture_opts->save_file, ld.err,
FALSE);
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
write_ok = FALSE;
}
@@ -1486,7 +1485,7 @@ capture_loop_start(capture_options *capture_opts, gboolean *stats_known, struct
if (!close_ok && write_ok) {
capture_loop_get_errmsg(errmsg, sizeof(errmsg), capture_opts->save_file, err_close,
TRUE);
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
}
/*
@@ -1511,7 +1510,7 @@ capture_loop_start(capture_options *capture_opts, gboolean *stats_known, struct
g_snprintf(errmsg, sizeof(errmsg),
"Can't get packet-drop statistics: %s",
pcap_geterr(ld.pcap_h));
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
}
}
@@ -1538,7 +1537,7 @@ error:
g_free(capture_opts->save_file);
}
capture_opts->save_file = NULL;
- capture_loop_popup_errmsg(capture_opts, errmsg);
+ sync_pipe_errmsg_to_parent(errmsg);
/* close the input file (pcap or cap_pipe) */
capture_loop_close_input(&ld);
@@ -1613,14 +1612,6 @@ capture_loop_get_errmsg(char *errmsg, int errmsglen, const char *fname,
}
}
-static void
-capture_loop_popup_errmsg(capture_options *capture_opts _U_, const char *errmsg)
-{
- /* Send the error message to our parent, so they can display a
- dialog box containing it. */
- sync_pipe_errmsg_to_parent(errmsg);
-}
-
/* one packet was captured, process it */
static void