diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-11-29 08:51:11 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-11-29 08:51:11 +0000 |
commit | 39be2f99bed4553cd4ed40e78a0ae4fdf6f1704b (patch) | |
tree | 6658a146e425b9141b812f830660a446ed0ae6a1 /file.h | |
parent | 4d5a749309947b358ac468fd70c2814b99f1d6e5 (diff) | |
download | wireshark-39be2f99bed4553cd4ed40e78a0ae4fdf6f1704b.tar.gz wireshark-39be2f99bed4553cd4ed40e78a0ae4fdf6f1704b.tar.bz2 wireshark-39be2f99bed4553cd4ed40e78a0ae4fdf6f1704b.zip |
Expand some comments.
svn path=/trunk/; revision=1152
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,7 +1,7 @@ /* file.h * Definitions for file structures and routines * - * $Id: file.h,v 1.55 1999/11/29 01:54:01 guy Exp $ + * $Id: file.h,v 1.56 1999/11/29 08:51:11 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -74,12 +74,12 @@ typedef struct bpf_program bpf_prog; typedef struct _capture_file { - FILE_T fh; /* Capture file */ - int filed; /* Filedes of capture file */ - gchar *filename; /* filename */ - long f_len; /* File length */ - guint16 cd_t; /* Capture data type */ - const gchar *cd_t_desc; /* Description of that data type */ + FILE_T fh; /* File handle for capture file */ + int filed; /* File descriptor of capture file */ + gchar *filename; /* Name of capture file */ + long f_len; /* Length of capture file */ + guint16 cd_t; /* File type of capture file */ + const gchar *cd_t_desc; /* Description of that file type */ guint32 vers; /* Version. For tcpdump minor is appended to major */ guint32 count; /* Packet count */ gfloat unfiltered_count; /* used for dfilter progress bar */ |