aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
Diffstat (limited to 'gtk')
-rw-r--r--gtk/afp_stat.c2
-rw-r--r--gtk/bootp_stat.c2
-rw-r--r--gtk/conversations_table.c4
-rw-r--r--gtk/dcerpc_stat.c2
-rw-r--r--gtk/expert_dlg.c2
-rw-r--r--gtk/fc_stat.c2
-rw-r--r--gtk/flow_graph.c6
-rw-r--r--gtk/h225_counter.c2
-rw-r--r--gtk/h225_ras_srt.c2
-rw-r--r--gtk/hostlist_table.c4
-rw-r--r--gtk/io_stat.c6
-rw-r--r--gtk/ldap_stat.c2
-rw-r--r--gtk/mgcp_stat.c2
-rw-r--r--gtk/rpc_progs.c2
-rw-r--r--gtk/rpc_stat.c2
-rw-r--r--gtk/rtp_analysis.c6
-rw-r--r--gtk/rtp_stream.c6
-rw-r--r--gtk/sctp_assoc_analyse.c2
-rw-r--r--gtk/sctp_chunk_stat.c2
-rw-r--r--gtk/sctp_chunk_stat_dlg.c2
-rw-r--r--gtk/sctp_stat_dlg.c2
-rw-r--r--gtk/sip_stat.c2
-rw-r--r--gtk/smb_stat.c2
-rw-r--r--gtk/stats_tree_stat.c2
-rw-r--r--gtk/tcp_graph.c2
-rw-r--r--gtk/voip_calls_dlg.c2
-rw-r--r--gtk/wsp_stat.c2
27 files changed, 37 insertions, 37 deletions
diff --git a/gtk/afp_stat.c b/gtk/afp_stat.c
index 7580189ea8..4ac518b715 100644
--- a/gtk/afp_stat.c
+++ b/gtk/afp_stat.c
@@ -194,7 +194,7 @@ gtk_afpstat_init(const char *optarg)
gtk_widget_show_all(ss->win);
window_present(ss->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg afp_stat_dlg = {
diff --git a/gtk/bootp_stat.c b/gtk/bootp_stat.c
index dd3ce32fb1..159ca6ae0c 100644
--- a/gtk/bootp_stat.c
+++ b/gtk/bootp_stat.c
@@ -267,7 +267,7 @@ dhcpstat_init(const char *optarg)
window_present(sp->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg dhcp_stat_dlg = {
diff --git a/gtk/conversations_table.c b/gtk/conversations_table.c
index e6f283c2f4..d74f104854 100644
--- a/gtk/conversations_table.c
+++ b/gtk/conversations_table.c
@@ -1327,7 +1327,7 @@ init_conversation_table(gboolean hide_ports, const char *table_name, const char
gtk_widget_show_all(conversations->win);
window_present(conversations->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* Keep clist frozen to cause modifications to the clist (inserts, appends, others that are extremely slow
@@ -1515,7 +1515,7 @@ init_conversation_notebook_cb(GtkWidget *w _U_, gpointer d _U_)
gtk_widget_show_all(win);
window_present(win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* after retapping, redraw table */
for (page=1; page<=GPOINTER_TO_INT(pages[0]); page++) {
diff --git a/gtk/dcerpc_stat.c b/gtk/dcerpc_stat.c
index 464ea16371..d2950e83f3 100644
--- a/gtk/dcerpc_stat.c
+++ b/gtk/dcerpc_stat.c
@@ -333,7 +333,7 @@ gtk_dcerpcstat_init(const char *optarg)
gtk_widget_show_all(rs->win);
window_present(rs->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
diff --git a/gtk/expert_dlg.c b/gtk/expert_dlg.c
index ec4a8d4ec9..e0908ab0df 100644
--- a/gtk/expert_dlg.c
+++ b/gtk/expert_dlg.c
@@ -574,7 +574,7 @@ expert_dlg_init(const char *optarg)
gtk_widget_show_all(etd->win);
window_present(etd->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
diff --git a/gtk/fc_stat.c b/gtk/fc_stat.c
index 8651a9af43..d7aaac2dc7 100644
--- a/gtk/fc_stat.c
+++ b/gtk/fc_stat.c
@@ -197,7 +197,7 @@ gtk_fcstat_init(const char *optarg)
gtk_widget_show_all(fc->win);
window_present(fc->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg fc_stat_dlg = {
diff --git a/gtk/flow_graph.c b/gtk/flow_graph.c
index 8b4b15943e..ef7f5a902e 100644
--- a/gtk/flow_graph.c
+++ b/gtk/flow_graph.c
@@ -335,7 +335,7 @@ flow_graph_on_ok (GtkButton *button _U_,
remove_tap_listener_flow_graph();
}
- /* Scan for displayed packets (redissect all packets) */
+ /* Scan for displayed packets (retap all packets) */
if (type_of_flow == GENERAL){
/* Register the tap listener */
@@ -351,7 +351,7 @@ flow_graph_on_ok (GtkButton *button _U_,
have_frame_tap_listener=TRUE;
}
- cf_redissect_packets(&cfile);
+ cf_retap_packets(&cfile, TRUE);
}
else if (type_of_flow == TCP){
/* Register the tap listener */
@@ -367,7 +367,7 @@ flow_graph_on_ok (GtkButton *button _U_,
have_tcp_tap_listener=TRUE;
}
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
if (graph_analysis_data->dlg.window != NULL){ /* if we still have a window */
diff --git a/gtk/h225_counter.c b/gtk/h225_counter.c
index 185b7b65ba..7db154e6cf 100644
--- a/gtk/h225_counter.c
+++ b/gtk/h225_counter.c
@@ -555,7 +555,7 @@ gtk_h225counter_init(const char *optarg)
gtk_widget_show_all(hs->win);
window_present(hs->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
void
diff --git a/gtk/h225_ras_srt.c b/gtk/h225_ras_srt.c
index 89641f59d5..391f5e9a3d 100644
--- a/gtk/h225_ras_srt.c
+++ b/gtk/h225_ras_srt.c
@@ -335,7 +335,7 @@ gtk_h225rassrt_init(const char *optarg)
gtk_widget_show_all(hs->win);
window_present(hs->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
void
diff --git a/gtk/hostlist_table.c b/gtk/hostlist_table.c
index c7265506e8..13234780b0 100644
--- a/gtk/hostlist_table.c
+++ b/gtk/hostlist_table.c
@@ -779,7 +779,7 @@ init_hostlist_table(gboolean hide_ports, const char *table_name, const char *tap
gtk_widget_show_all(hosttable->win);
window_present(hosttable->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* Keep clist frozen to cause modifications to the clist (inserts, appends, others that are extremely slow
in GTK2) to not be drawn, allow refreshes to occur at strategic points for performance */
@@ -967,7 +967,7 @@ init_hostlist_notebook_cb(GtkWidget *w _U_, gpointer d _U_)
gtk_widget_show_all(win);
window_present(win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* after retapping, redraw table */
for (page=1; page<=GPOINTER_TO_INT(pages[0]); page++) {
diff --git a/gtk/io_stat.c b/gtk/io_stat.c
index 1afabdd9bf..acf00743c4 100644
--- a/gtk/io_stat.c
+++ b/gtk/io_stat.c
@@ -1115,7 +1115,7 @@ gtk_iostat_init(const char *optarg _U_)
/* build the GUI */
init_io_stat_window(io);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
io_stat_redraw(io);
}
@@ -1275,7 +1275,7 @@ tick_interval_select(GtkWidget *item, gpointer key)
val=(int)OBJECT_GET_DATA(item, "tick_interval");
io->interval=val;
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
io_stat_redraw(io);
}
@@ -1640,7 +1640,7 @@ filter_callback(GtkWidget *widget _U_, io_stat_graph_t *gio)
io_stat_reset(gio->io);
enable_graph(gio, filter, field);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
io_stat_redraw(gio->io);
return 0;
diff --git a/gtk/ldap_stat.c b/gtk/ldap_stat.c
index 30bee44047..96fd375831 100644
--- a/gtk/ldap_stat.c
+++ b/gtk/ldap_stat.c
@@ -232,7 +232,7 @@ gtk_ldapstat_init(const char *optarg)
gtk_widget_show_all(ldap->win);
window_present(ldap->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg ldap_stat_dlg = {
diff --git a/gtk/mgcp_stat.c b/gtk/mgcp_stat.c
index 999d1f8af2..2665435019 100644
--- a/gtk/mgcp_stat.c
+++ b/gtk/mgcp_stat.c
@@ -305,7 +305,7 @@ gtk_mgcpstat_init(const char *optarg)
gtk_widget_show_all(ms->win);
window_present(ms->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg mgcp_srt_dlg = {
diff --git a/gtk/rpc_progs.c b/gtk/rpc_progs.c
index 8d8d46a8ff..da07a369f8 100644
--- a/gtk/rpc_progs.c
+++ b/gtk/rpc_progs.c
@@ -403,7 +403,7 @@ gtk_rpcprogs_init(const char *optarg _U_)
gtk_widget_show_all(win);
window_present(win);
- cf_redissect_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static void
diff --git a/gtk/rpc_stat.c b/gtk/rpc_stat.c
index 2780167edd..920341b81f 100644
--- a/gtk/rpc_stat.c
+++ b/gtk/rpc_stat.c
@@ -309,7 +309,7 @@ gtk_rpcstat_init(const char *optarg)
gtk_widget_show_all(rs->win);
window_present(rs->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
diff --git a/gtk/rtp_analysis.c b/gtk/rtp_analysis.c
index c046aea34c..c6c9ca999a 100644
--- a/gtk/rtp_analysis.c
+++ b/gtk/rtp_analysis.c
@@ -1776,7 +1776,7 @@ static gint filter_callback(GtkWidget *widget _U_, dialog_graph_graph_t *dgg)
}
enable_graph(dgg);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
dialog_graph_redraw(dgg->ud);
return 0;
@@ -1895,7 +1895,7 @@ static void tick_interval_select(GtkWidget *item, gpointer key)
val=(int)OBJECT_GET_DATA(item, "tick_interval");
user_data->dlg.dialog_graph.interval=val;
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
dialog_graph_redraw(user_data);
}
@@ -2128,7 +2128,7 @@ static void on_refresh_bt_clicked(GtkWidget *bt _U_, user_data_t *user_data _U_)
}
/* retap all packets */
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* draw statistics info */
draw_stat(user_data);
diff --git a/gtk/rtp_stream.c b/gtk/rtp_stream.c
index d145639413..7d93a3b1a1 100644
--- a/gtk/rtp_stream.c
+++ b/gtk/rtp_stream.c
@@ -324,7 +324,7 @@ void rtpstream_scan(void)
register_tap_listener_rtp_stream();
the_tapinfo_struct.mode = TAP_ANALYSE;
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
if (!was_registered)
remove_tap_listener_rtp_stream();
@@ -355,7 +355,7 @@ gboolean rtpstream_save(rtp_stream_info_t* stream, const gchar *filename)
the_tapinfo_struct.mode = TAP_SAVE;
the_tapinfo_struct.filter_stream_fwd = stream;
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
the_tapinfo_struct.mode = TAP_ANALYSE;
if (!was_registered)
@@ -386,7 +386,7 @@ void rtpstream_mark(rtp_stream_info_t* stream_fwd, rtp_stream_info_t* stream_rev
the_tapinfo_struct.mode = TAP_MARK;
the_tapinfo_struct.filter_stream_fwd = stream_fwd;
the_tapinfo_struct.filter_stream_rev = stream_rev;
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
the_tapinfo_struct.mode = TAP_ANALYSE;
if (!was_registered)
diff --git a/gtk/sctp_assoc_analyse.c b/gtk/sctp_assoc_analyse.c
index aa3fda552d..de0696d152 100644
--- a/gtk/sctp_assoc_analyse.c
+++ b/gtk/sctp_assoc_analyse.c
@@ -868,7 +868,7 @@ void sctp_analyse_start(GtkWidget *w _U_, gpointer data _U_)
u_data->window = NULL;
u_data->num_children = 0;
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
sctp_analyse_cb(u_data);
}
diff --git a/gtk/sctp_chunk_stat.c b/gtk/sctp_chunk_stat.c
index 75d4e668b8..145f0e68a7 100644
--- a/gtk/sctp_chunk_stat.c
+++ b/gtk/sctp_chunk_stat.c
@@ -337,7 +337,7 @@ sctpstat_init(const char *optarg)
gtk_widget_show_all(hs->win);
window_present(hs->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
void
diff --git a/gtk/sctp_chunk_stat_dlg.c b/gtk/sctp_chunk_stat_dlg.c
index 646b40030a..2495d58064 100644
--- a/gtk/sctp_chunk_stat_dlg.c
+++ b/gtk/sctp_chunk_stat_dlg.c
@@ -324,7 +324,7 @@ gtk_sctpstat_dlg(struct sctp_udata *u_data, unsigned int direction)
SIGNAL_CONNECT(bt_close, "clicked", sctp_chunk_stat_on_close, u_data);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
diff --git a/gtk/sctp_stat_dlg.c b/gtk/sctp_stat_dlg.c
index 824e387386..054337bbde 100644
--- a/gtk/sctp_stat_dlg.c
+++ b/gtk/sctp_stat_dlg.c
@@ -565,7 +565,7 @@ gtk_sctpstat_dlg(void)
SIGNAL_CONNECT(bt_close, "clicked", sctp_stat_on_close, NULL);
sctp_stat_dlg = sctp_stat_dlg_w;
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
diff --git a/gtk/sip_stat.c b/gtk/sip_stat.c
index ff83d4d674..8799b6bf0a 100644
--- a/gtk/sip_stat.c
+++ b/gtk/sip_stat.c
@@ -647,7 +647,7 @@ gtk_sipstat_init(const char *optarg)
window_present(sp->win);
sip_init_hash(sp);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg sip_stat_dlg = {
diff --git a/gtk/smb_stat.c b/gtk/smb_stat.c
index d9d90eca4e..dccb7b1a8a 100644
--- a/gtk/smb_stat.c
+++ b/gtk/smb_stat.c
@@ -235,7 +235,7 @@ gtk_smbstat_init(const char *optarg)
gtk_widget_show_all(ss->win);
window_present(ss->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg smb_stat_dlg = {
diff --git a/gtk/stats_tree_stat.c b/gtk/stats_tree_stat.c
index d08c2f5365..10a04f3dbc 100644
--- a/gtk/stats_tree_stat.c
+++ b/gtk/stats_tree_stat.c
@@ -360,7 +360,7 @@ static void init_gtk_tree(const char* optarg) {
st->cfg->init(st);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
diff --git a/gtk/tcp_graph.c b/gtk/tcp_graph.c
index 5c2da9343c..a074210a27 100644
--- a/gtk/tcp_graph.c
+++ b/gtk/tcp_graph.c
@@ -1838,7 +1838,7 @@ static void graph_segment_list_get (struct graph *g)
g_string_free(error_string, TRUE);
exit(1);
}
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
remove_tap_listener(&ts);
}
diff --git a/gtk/voip_calls_dlg.c b/gtk/voip_calls_dlg.c
index 831c8f75e1..1a99eb60b4 100644
--- a/gtk/voip_calls_dlg.c
+++ b/gtk/voip_calls_dlg.c
@@ -794,7 +794,7 @@ voip_calls_init_tap(const char *dummy _U_)
gtk_clist_append(GTK_CLIST(clist), data);
/* Scan for VoIP calls calls (redissect all packets) */
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
/* Tap listener will be removed and cleaned up in voip_calls_on_destroy */
}
diff --git a/gtk/wsp_stat.c b/gtk/wsp_stat.c
index 3f1f0c53d5..f8d612ca26 100644
--- a/gtk/wsp_stat.c
+++ b/gtk/wsp_stat.c
@@ -411,7 +411,7 @@ gtk_wspstat_init(const char *optarg)
gtk_widget_show_all(sp->win);
window_present(sp->win);
- cf_retap_packets(&cfile);
+ cf_retap_packets(&cfile, FALSE);
}
static tap_dfilter_dlg wsp_stat_dlg = {