diff options
author | Gerald Combs <gerald@wireshark.org> | 1998-09-17 03:12:28 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 1998-09-17 03:12:28 +0000 |
commit | 5110b21fd8cba19554f0c4f7a52e96af3acf4927 (patch) | |
tree | 2f123f7fccaa41be86444a370706bb390d0a6ca8 /file.h | |
parent | 3ad9f399156ea5af0864455e042a43727cac715d (diff) | |
download | wireshark-5110b21fd8cba19554f0c4f7a52e96af3acf4927.tar.gz wireshark-5110b21fd8cba19554f0c4f7a52e96af3acf4927.tar.bz2 wireshark-5110b21fd8cba19554f0c4f7a52e96af3acf4927.zip |
* Added Mike Hall's TCP reconstruction code.
svn path=/trunk/; revision=10
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* file.h * Definitions for file structures and routines * - * $Id: file.h,v 1.2 1998/09/16 03:21:57 gerald Exp $ + * $Id: file.h,v 1.3 1998/09/17 03:12:25 gerald Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -54,6 +54,7 @@ typedef struct bpf_program bpf_prog; typedef struct _capture_file { FILE *fh; /* Capture file */ + gchar *filename; /* filename */ long f_len; /* File length */ int swap; /* Swap data bytes? */ guint16 cd_t; /* Capture data type */ |