aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ipfix.h
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-10-20 00:36:53 +0000
committerBill Meier <wmeier@newsguy.com>2010-10-20 00:36:53 +0000
commit9787a5734a75c813891ea1eba9ef8998e91ad9b2 (patch)
treebb3effb35a2e0047d5191d8777121d37a6a276d5 /wiretap/ipfix.h
parenta75d7209f56e576ef2146026dd791d81acb1fc0b (diff)
From Hadriel Kaplan: IPFIX file format support.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5242 svn path=/trunk/; revision=34576
Diffstat (limited to 'wiretap/ipfix.h')
-rw-r--r--wiretap/ipfix.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/wiretap/ipfix.h b/wiretap/ipfix.h
new file mode 100644
index 0000000000..0f891a48fe
--- /dev/null
+++ b/wiretap/ipfix.h
@@ -0,0 +1,30 @@
+/* ipfix.h
+ *
+ * $Id$
+ *
+ * Wiretap Library
+ * Copyright (c) 2010 by Hadriel Kaplan <hadrielk@yahoo.com>
+ *
+ * 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.
+ */
+
+#ifndef __W_IPFIX_H__
+#define __W_IPFIX_H__
+
+#define RECORDS_FOR_IPFIX_CHECK 20
+
+int ipfix_open(wtap *wth, int *err, gchar **err_info);
+
+#endif