aboutsummaryrefslogtreecommitdiffstats
path: root/capture_stop_conditions.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-12-04 07:32:05 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-12-04 07:32:05 +0000
commit55cd52837f2c7fab796b54e75a8b13b714a46e05 (patch)
tree20e71ed2ee0399b430f10ab92177fb1d5fc7e953 /capture_stop_conditions.h
parent540194fba8ad0c6ea73cc65d9b060a6678be1696 (diff)
Support for stopping capture at specified capture file size or capture
duration, from Thomas Wittwer and Matthias Nyffenegger. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4322 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture_stop_conditions.h')
-rw-r--r--capture_stop_conditions.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/capture_stop_conditions.h b/capture_stop_conditions.h
new file mode 100644
index 0000000000..4a11636373
--- /dev/null
+++ b/capture_stop_conditions.h
@@ -0,0 +1,29 @@
+/* capture_stop_conditions.h
+ * Implementation for 'stop condition handler'.
+ *
+ * $Id: capture_stop_conditions.h,v 1.1 2001/12/04 07:32:00 guy Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+void init_capture_stop_conditions(void);
+void cleanup_capture_stop_conditions(void);
+
+extern const char* CND_CLASS_TIMEOUT;
+extern const char* CND_CLASS_CAPTURESIZE;