aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-11-29 08:51:11 +0000
committerGuy Harris <guy@alum.mit.edu>1999-11-29 08:51:11 +0000
commit39be2f99bed4553cd4ed40e78a0ae4fdf6f1704b (patch)
tree6658a146e425b9141b812f830660a446ed0ae6a1 /file.h
parent4d5a749309947b358ac468fd70c2814b99f1d6e5 (diff)
Expand some comments.
svn path=/trunk/; revision=1152
Diffstat (limited to 'file.h')
-rw-r--r--file.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/file.h b/file.h
index 29113cda45..ee6cd4662a 100644
--- a/file.h
+++ b/file.h
@@ -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 */