diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-08-05 00:01:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-08-05 00:01:27 +0000 |
commit | d2e2149ff9a7beafe16c9766be2c61bd4d94c58e (patch) | |
tree | 3976a9ed962743195d6f6df5a6261db88679f3cf /file.h | |
parent | a6e6a7a36464e493a236ba1db6ed2ce6c7ef6be9 (diff) | |
download | wireshark-d2e2149ff9a7beafe16c9766be2c61bd4d94c58e.tar.gz wireshark-d2e2149ff9a7beafe16c9766be2c61bd4d94c58e.tar.bz2 wireshark-d2e2149ff9a7beafe16c9766be2c61bd4d94c58e.zip |
From Greg Morris: add support for case-insensitive full-text searches.
svn path=/trunk/; revision=8132
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* file.h * Definitions for file structures and routines * - * $Id: file.h,v 1.101 2003/07/25 17:57:06 guy Exp $ + * $Id: file.h,v 1.102 2003/08/05 00:01:27 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -57,7 +57,7 @@ int print_packets(capture_file *cf, print_args_t *print_args); void change_time_formats(capture_file *); gboolean find_packet(capture_file *cf, dfilter_t *sfcode); guint8 get_int_value(char char_val); -gboolean find_ascii(capture_file *cf, char *ascii_text, gboolean ascii_search, char *ftype); +gboolean find_ascii(capture_file *cf, char *ascii_text, gboolean ascii_search, char *ftype, gboolean case_type); gboolean goto_frame(capture_file *cf, guint fnumber); |