summaryrefslogtreecommitdiff
path: root/wiretap/packetlogger.h
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2009-02-16 07:24:04 +0000
committerStephen Fisher <steve@stephen-fisher.com>2009-02-16 07:24:04 +0000
commit18f3436e85cd898995e4635c8de204d19d3aec86 (patch)
tree8c57e4d8da5544e0db05149a4119ebca4b7ffd0d /wiretap/packetlogger.h
parent5742ede54c6427d581c718ffd7c2e43cfe40bf56 (diff)
downloadwireshark-18f3436e85cd898995e4635c8de204d19d3aec86.tar.gz
Add support for reading Apple's Bluetooth PacketLogger capture files to
wiretap. Modify various other locations to accommodate the fact that PacketLogger files do not specify the direction of packets. svn path=/trunk/; revision=27463
Diffstat (limited to 'wiretap/packetlogger.h')
-rw-r--r--wiretap/packetlogger.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/wiretap/packetlogger.h b/wiretap/packetlogger.h
new file mode 100644
index 0000000000..6a34def720
--- /dev/null
+++ b/wiretap/packetlogger.h
@@ -0,0 +1,32 @@
+/* packetlogger.h
+ *
+ * $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 __PACKETLOGGER_H__
+#define __PACKETLOGGER_H__
+
+int packetlogger_open(wtap *wth, int *err, gchar **err_info _U_);
+
+#endif /* __PACKETLOGGER_H__ */
+