aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/capsa.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-10-13 23:45:05 -0700
committerGuy Harris <guy@alum.mit.edu>2014-10-14 06:45:35 +0000
commitfa6e907711f2ac230230cbe970d775e2ef923531 (patch)
tree7dcc801821af31840021461dadb7563264849a62 /wiretap/capsa.h
parent0149015b6ebbb9dc5dded43970bacaccf85150b5 (diff)
Initial version of support for Colasoft Capsa files.
The time stamp origin is not correct. Capsa's absolute time stamp for the sample captures from their Web site would be helpful. Change-Id: I365daf7b42240e33f54df76939254f41ed57a9b2 Reviewed-on: https://code.wireshark.org/review/4671 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/capsa.h')
-rw-r--r--wiretap/capsa.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/wiretap/capsa.h b/wiretap/capsa.h
new file mode 100644
index 0000000000..6a49930103
--- /dev/null
+++ b/wiretap/capsa.h
@@ -0,0 +1,30 @@
+/* capsa.h
+ *
+ * Wiretap Library
+ * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
+ *
+ * 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 __W_CAPSA_H__
+#define __W_CAPSA_H__
+
+#include <glib.h>
+#include <wtap.h>
+#include "ws_symbol_export.h"
+
+wtap_open_return_val capsa_open(wtap *wth, int *err, gchar **err_info);
+
+#endif