summaryrefslogtreecommitdiff
path: root/capture_stop_conditions.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-04 07:32:05 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-04 07:32:05 +0000
commita1660d6d3afbaeccd77d8e34c695bf65a4f4f09e (patch)
tree20e71ed2ee0399b430f10ab92177fb1d5fc7e953 /capture_stop_conditions.h
parent9426c4ad15826cee237cc1f822c8a758d01473f6 (diff)
downloadwireshark-a1660d6d3afbaeccd77d8e34c695bf65a4f4f09e.tar.gz
Support for stopping capture at specified capture file size or capture
duration, from Thomas Wittwer and Matthias Nyffenegger. svn path=/trunk/; revision=4322
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;