aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/aethra.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-10-26 02:18:55 +0000
committerGuy Harris <guy@alum.mit.edu>2011-10-26 02:18:55 +0000
commite9ae3a0fd641bb91182430fe0c7f026327dab26b (patch)
tree4a889b230ced860c587cc9a677a7232ef74cee92 /wiretap/aethra.h
parent3b0625c340db21f80d3b519297e1c0bc1ea48115 (diff)
Initial support for .aps files from Aethra Telecommunications' PC108
software. More work is needed: we don't know where the capture start time is yet; we aren't handling the "stop capture" record; we don't know where the ISDN channel is; there might be non-ISDN file formats; but this at least is easier than trying to text2pcap hex dumps from that software into pcap files. svn path=/trunk/; revision=39588
Diffstat (limited to 'wiretap/aethra.h')
-rw-r--r--wiretap/aethra.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/wiretap/aethra.h b/wiretap/aethra.h
new file mode 100644
index 0000000000..240a6a734f
--- /dev/null
+++ b/wiretap/aethra.h
@@ -0,0 +1,31 @@
+/* aethra.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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __W_AETHRA_H__
+#define __W_AETHRA_H__
+
+#include <glib.h>
+#include <wtap.h>
+
+int aethra_open(wtap *wth, int *err, gchar **err_info);
+
+#endif