summaryrefslogtreecommitdiff
path: root/wiretap/camins.h
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-03-30 09:56:57 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-03-30 09:56:57 +0000
commit7a2bdedff6b3ff46493a10ce6ba3f8bb9009c600 (patch)
tree503841f0d61e0b6d7dc69833ea4fb102b5bad2b8 /wiretap/camins.h
parent178fc8852af82c4f4639f31d2764c6a8d9f59f99 (diff)
downloadwireshark-7a2bdedff6b3ff46493a10ce6ba3f8bb9009c600.tar.gz
wiretap support for the CAM Inspector file format
svn path=/trunk/; revision=48647
Diffstat (limited to 'wiretap/camins.h')
-rw-r--r--wiretap/camins.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/wiretap/camins.h b/wiretap/camins.h
new file mode 100644
index 0000000000..b06a9322c3
--- /dev/null
+++ b/wiretap/camins.h
@@ -0,0 +1,35 @@
+/* camins.h
+ *
+ * File format support for Rabbit Labs CAM Inspector files
+ * Copyright (c) 2013 by Martin Kaiser <martin@kaiser.cx>
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef _CAMINS_H
+#define _CAMINS_H
+
+#include <glib.h>
+#include <wiretap/wtap.h>
+
+int camins_open(wtap *wth, int *err, gchar **err_info);
+
+#endif /* _CAMINS_H */