aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btavdtp.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-11-05 11:42:10 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-11-05 11:42:10 +0000
commit892ff116c97cb48bcf19e1972f65b912168f0abf (patch)
treed420f5534f84e24602e64c35c4cddfd239aea964 /epan/dissectors/packet-btavdtp.h
parent45953625a5c9238300ef706aa8b816b935b4621f (diff)
From Michal Labedzki:
Add support for AVDTP/A2DP/VDP and SBC Part of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7893 svn path=/trunk/; revision=45921
Diffstat (limited to 'epan/dissectors/packet-btavdtp.h')
-rw-r--r--epan/dissectors/packet-btavdtp.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/epan/dissectors/packet-btavdtp.h b/epan/dissectors/packet-btavdtp.h
new file mode 100644
index 0000000000..c847571332
--- /dev/null
+++ b/epan/dissectors/packet-btavdtp.h
@@ -0,0 +1,47 @@
+/* packet-btavdtp.h
+ * Headers for AVDTP
+ *
+ * Copyright 2012, Michal Labedzki for Tieto Corporation
+ *
+ * $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 __PACKET_BTAVDTP_H__
+#define __PACKET_BTAVDTP_H__
+
+typedef struct _btavdtp_data_t {
+ dissector_handle_t codec_dissector;
+} btavdtp_data_t;
+
+#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:
+ */