aboutsummaryrefslogtreecommitdiffstats
path: root/capture.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 /capture.h
parente638eb378fb8d7e2da48f5ce8af9ac9c987a0bab (diff)
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 'capture.h')
-rw-r--r--capture.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/capture.h b/capture.h
index d8db026b22..3ac4f9ae11 100644
--- a/capture.h
+++ b/capture.h
@@ -1,7 +1,7 @@
/* capture.h
* Definitions for packet capture windows
*
- * $Id: capture.h,v 1.5 1999/04/06 16:24:48 gram Exp $
+ * $Id: capture.h,v 1.6 1999/05/11 18:51:09 deniel Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -30,6 +30,8 @@ typedef struct _loop_data {
gint go;
gint max;
gint linktype;
+ gint signal_sent;
+ time_t sync_time;
packet_counts counts;
pcap_dumper_t *pdh;
} loop_data;