~ubuntu-branches/ubuntu/gutsy/wireshark/gutsy-security

« back to all changes in this revision

Viewing changes to cfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2007-04-01 08:58:40 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070401085840-or3qhrpv8alt1bwg
Tags: 0.99.5-1
* New upstream release.
* debian/patches/09_idl2wrs.dpatch: updated to patch idl2wrs.sh.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* cfile.h
2
2
 * capture_file definition & GUI-independent manipulation
3
3
 *
4
 
 * $Id: cfile.h 18197 2006-05-21 05:12:17Z sahlberg $
 
4
 * $Id: cfile.h 20251 2007-01-01 10:23:37Z sahlberg $
5
5
 *
6
6
 * Wireshark - Network traffic analyzer
7
7
 * By Gerald Combs <gerald@wireshark.org>
46
46
  gchar       *filename;  /* Name of capture file */
47
47
  gboolean     is_tempfile; /* Is capture file a temporary file? */
48
48
  gboolean     user_saved;/* If capture file is temporary, has it been saved by user yet? */
49
 
  long         f_datalen; /* Size of capture file data (uncompressed) */
 
49
  gint64       f_datalen; /* Size of capture file data (uncompressed) */
50
50
  guint16      cd_t;      /* File type of capture file */
51
51
  int          lnk_t;     /* Link-layer type with which to save capture */
52
52
  guint32      vers;      /* Version.  For tcpdump minor is appended to major */
61
61
  wtap        *wth;       /* Wiretap session */
62
62
  dfilter_t   *rfcode;    /* Compiled read (display) filter program */
63
63
  gchar       *dfilter;   /* Display filter string */
64
 
  dfilter_t   *dfcode;    /* Compiled display filter program */
65
64
  /* search */
66
65
  gchar       *sfilter;   /* Search filter string */
67
66
  gboolean     sbackward; /* TRUE if search is backward, FALSE if forward */
68
67
  gboolean     hex;       /* TRUE is raw data search is being performed */
69
68
  gboolean     string;    /* TRUE is text search is being performed */
 
69
  guint32      search_pos; /* Position of last character found in search */
70
70
  search_charset_t scs_type; /* Character set for text search */
71
71
  gboolean     case_type; /* TRUE if case-insensitive text search */
72
72
  gboolean     decode_data; /* TRUE if searching protocol tree text */