aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-23 22:48:52 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-23 22:48:52 +0000
commit6064ef84c20c8793f2097a5d262c7d1c1aa4a800 (patch)
treea215667aa765deb015fc5b3faa6f94a2f92309fb /file.h
parent5de3a44126731eb7686eca522d99a26d1fedce2f (diff)
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 'file.h')
-rw-r--r--file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.h b/file.h
index 1d7b666914..a0c7946f7c 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.115 2004/01/25 21:55:10 guy Exp $
+ * $Id: file.h,v 1.116 2004/02/23 22:48:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -52,7 +52,7 @@ read_status_t cf_finish_tail(capture_file *, int *);
gboolean cf_save(char *fname, capture_file * cf, packet_range_t *range, guint save_format);
gchar *cf_get_display_name(capture_file *);
-int filter_packets(capture_file *cf, gchar *dfilter);
+gboolean filter_packets(capture_file *cf, gchar *dfilter, gboolean force);
void reftime_packets(capture_file *);
void colorize_packets(capture_file *);
void redissect_packets(capture_file *cf);