aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/dpa400.h
diff options
context:
space:
mode:
authorDirk Eibach <dirk.eibach@gdsys.cc>2018-05-03 16:10:15 +0200
committerGuy Harris <guy@alum.mit.edu>2018-05-07 17:41:20 +0000
commitdfd6eb5d68065b47cf19603f34300ed43ae5e858 (patch)
treeecf447f08f1e11d2d0a2afa9c787cb70322e975e /wiretap/dpa400.h
parentc9832726bfae1e86891581f3d072537b9eb14ea7 (diff)
wiretap: DPA-400 logfile support
Wiretap support for reading the Unigraf DPA-400 DisplayPort AUX channel monitor logfiles. Bug: 14651 Change-Id: I8d3c50575c9806dd04b40053db45564404bad103 Reviewed-on: https://code.wireshark.org/review/27312 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/dpa400.h')
-rw-r--r--wiretap/dpa400.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/wiretap/dpa400.h b/wiretap/dpa400.h
new file mode 100644
index 0000000000..3e9ffdce78
--- /dev/null
+++ b/wiretap/dpa400.h
@@ -0,0 +1,31 @@
+/* dpa400.h
+ *
+ * Copyright 2015, Dario Lombardo <lomato@gmail.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ *
+ */
+
+#ifndef __DPA400_H__
+#define __DPA400_H__
+
+#include <glib.h>
+
+#include "wtap.h"
+
+wtap_open_return_val dpa400_open(wtap *wth, int *err, gchar **err_info);
+
+#endif
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */