aboutsummaryrefslogtreecommitdiffstats
path: root/capture.h
diff options
context:
space:
mode:
authordeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>1999-05-11 18:51:10 +0000
committerdeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>1999-05-11 18:51:10 +0000
commit07174570f02b8bb57c5f49da8aa543636b7c50e6 (patch)
tree4c82bd136c135bbc92b5c5f7222dc325ad09e4cc /capture.h
parent77c30088d317932bb2efaf50fd461593f2e30f23 (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) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@276 f5534014-38df-0310-8fa8-9805f1628bb7
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;