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-10 22:33:24 +0000
commitc430645b4db4820da3f711b4d98b9cc7be8f08ce (patch)
tree7b50f9b6a9b60d13f4d049ed04bd0e87acc24944 /wiretap/dpa400.h
parentbfd51199e707c1d5c28732be34b44a9ee8a91cd8 (diff)
wiretap: DPA-400 logfile support
Wiretap support for reading the Unigraf DPA-400 DisplayPort AUX channel monitor logfiles. Bug: 14651 Change-Id: Ia8714a72a9439dd566ef604e001ebf45ecaab76d Reviewed-on: https://code.wireshark.org/review/27415 Reviewed-by: Dario Lombardo <lomato@gmail.com> Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Petri-Dish: Guy Harris <guy@alum.mit.edu> Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/dpa400.h')
-rw-r--r--wiretap/dpa400.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/wiretap/dpa400.h b/wiretap/dpa400.h
new file mode 100644
index 0000000000..2fd188a5bf
--- /dev/null
+++ b/wiretap/dpa400.h
@@ -0,0 +1,30 @@
+/* dpa400.h
+ *
+ * Copyright 2018, Dirk Eibach, Guntermann & Drunck GmbH <dirk.eibach@gdsys.cc>
+ *
+ * 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:
+ */