aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/peekclassic.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-07-09 23:07:28 +0000
committerGuy Harris <guy@alum.mit.edu>2012-07-09 23:07:28 +0000
commit9fcbc2377fa09fb6c4837780faac307b467486ae (patch)
tree7f8e1e178c63debb56384169d620eaeef8f76c23 /wiretap/peekclassic.h
parent4705839f110e9cbef5538e9a205fa59524aba83d (diff)
The names "etherpeek" and "airopeek" are a bit misleading, as the
"etherpeek.c" file format is used by AiroPeek and the "airopeek9.c" file format is used by EtherPeek. Instead, use the names that WildPackets apparently uses for those formats - "classic" and "tagged". svn path=/trunk/; revision=43630
Diffstat (limited to 'wiretap/peekclassic.h')
-rw-r--r--wiretap/peekclassic.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/wiretap/peekclassic.h b/wiretap/peekclassic.h
new file mode 100644
index 0000000000..99c902ee45
--- /dev/null
+++ b/wiretap/peekclassic.h
@@ -0,0 +1,32 @@
+/* peekclassic.h
+ *
+ * $Id$
+ *
+ * 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_PEEKCLASSIC_H__
+#define __W_PEEKCLASSIC_H__
+
+#include <glib.h>
+#include <wtap.h>
+
+int peekclassic_open(wtap *wth, int *err, gchar **err_info);
+
+#endif