summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
authorLaurent Deniel <laurent.deniel@free.fr>1999-05-11 18:51:10 +0000
committerLaurent Deniel <laurent.deniel@free.fr>1999-05-11 18:51:10 +0000
commit4664b86ccd2fc0d437952ab126317a0b749e9ef5 (patch)
tree4c82bd136c135bbc92b5c5f7222dc325ad09e4cc /file.h
parente638eb378fb8d7e2da48f5ce8af9ac9c987a0bab (diff)
downloadwireshark-4664b86ccd2fc0d437952ab126317a0b749e9ef5.tar.gz
Live data capture and display enhancement that allows network capture and
display of fully decoded packets at the same time. Options added: -F : fork capture process -S : sync mode ala tail -f (implies -F) -f : filter expression -Q : exit after capture (implies -k) svn path=/trunk/; revision=276
Diffstat (limited to 'file.h')
-rw-r--r--file.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/file.h b/file.h
index f41f003fc5..3480347c3d 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.12 1999/04/06 16:24:49 gram Exp $
+ * $Id: file.h,v 1.13 1999/05/11 18:51:10 deniel Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -92,6 +92,7 @@ typedef struct _capture_file {
*/
/*guint8 pd[MAX_PACKET_SIZE];*/ /* Packet data */
guint8 pd[65536]; /* Packet data */
+ GList *plist_first;/* First packet in list */
GList *plist; /* Packet list */
frame_data *cur; /* Current list item */
column_info cinfo; /* Column formatting information */
@@ -120,6 +121,7 @@ typedef struct _snoop_frame_hdr {
int open_cap_file(char *, capture_file *);
void close_cap_file(capture_file *, void *, guint);
int load_cap_file(char *, capture_file *);
+int tail_cap_file(char *, capture_file *);
/* size_t read_frame_header(capture_file *); */
#endif /* file.h */