diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-07-22 23:08:48 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-07-22 23:08:48 +0000 |
commit | 487d0def6bb376f748788ca2f7e0f14f1dacfb61 (patch) | |
tree | 2dbdd4c977f90f37e0a5cd498903fac9b6f8f760 /cfile.h | |
parent | d6ed14254948fe05e639c10918bb3603c1ad7259 (diff) | |
download | wireshark-487d0def6bb376f748788ca2f7e0f14f1dacfb61.tar.gz wireshark-487d0def6bb376f748788ca2f7e0f14f1dacfb61.tar.bz2 wireshark-487d0def6bb376f748788ca2f7e0f14f1dacfb61.zip |
From Greg Morris: code to support searches for text or raw binary data
in a frame in Find Frame.
svn path=/trunk/; revision=8067
Diffstat (limited to 'cfile.h')
-rw-r--r-- | cfile.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* cfile.h * capture_file definition & GUI-independent manipulation * - * $Id: cfile.h,v 1.1 2002/09/06 23:14:04 sahlberg Exp $ + * $Id: cfile.h,v 1.2 2003/07/22 23:08:47 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -65,6 +65,9 @@ typedef struct _capture_file { #endif gchar *sfilter; /* Search filter string */ gboolean sbackward; /* TRUE if search is backward, FALSE if forward */ + gboolean hex; /* TRUE is Hex search is being performed */ + gboolean ascii; /* TRUE is ASCII search is being performed */ + char *ftype; /* Find Frame String Type */ union wtap_pseudo_header pseudo_header; /* Packet pseudo_header */ guint8 pd[WTAP_MAX_PACKET_SIZE]; /* Packet data */ GMemChunk *plist_chunk; /* Memory chunk for frame_data structures */ |