diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-02-23 22:48:52 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-02-23 22:48:52 +0000 |
commit | 6064ef84c20c8793f2097a5d262c7d1c1aa4a800 (patch) | |
tree | a215667aa765deb015fc5b3faa6f94a2f92309fb /gtk/main.h | |
parent | 5de3a44126731eb7686eca522d99a26d1fedce2f (diff) | |
download | wireshark-6064ef84c20c8793f2097a5d262c7d1c1aa4a800.tar.gz wireshark-6064ef84c20c8793f2097a5d262c7d1c1aa4a800.tar.bz2 wireshark-6064ef84c20c8793f2097a5d262c7d1c1aa4a800.zip |
Add a "force" argument to "filter_packets()" and
"main_filter_packets()", to force the filtering to be done even if the
filter is the same as the current one; this is necessary in order to
make sure "Follow TCP Stream" gets the packets processed even if you're
filtering the stream that's currently filtered in.
svn path=/trunk/; revision=10209
Diffstat (limited to 'gtk/main.h')
-rw-r--r-- | gtk/main.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/main.h b/gtk/main.h index 9289dc5d27..7e28fc03df 100644 --- a/gtk/main.h +++ b/gtk/main.h @@ -1,7 +1,7 @@ /* main.h * Global defines, etc. * - * $Id: main.h,v 1.42 2004/02/03 00:16:58 ulfl Exp $ + * $Id: main.h,v 1.43 2004/02/23 22:48:52 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -107,7 +107,8 @@ extern void dfilter_recent_combo_write_all(FILE *rf); extern gboolean main_do_quit(void); extern void main_widgets_rearrange(void); -extern int main_filter_packets(capture_file *cf, const gchar *dftext); +extern gboolean main_filter_packets(capture_file *cf, const gchar *dftext, + gboolean force); extern void dnd_open_file_cmd(gpointer cf_name); extern void packets_bar_update(void); |