aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bt-utp.h
diff options
context:
space:
mode:
authorJohn Thacker <johnthacker@gmail.com>2021-10-12 19:47:34 -0400
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-10-13 04:37:21 +0000
commitc6e44fb00c6e94e5037fbc1b54eacc202b432e0c (patch)
treebaa4ee0101178409bc59fe74e4258c93f93d7763 /epan/dissectors/packet-bt-utp.h
parentabcadce44fab895afc4aa01531122972c9ef9ede (diff)
BT-uTP: Track conversations
Add endpoint type for uTP connection IDs. Manage uTP conversations, creating generated stream ID to filter on both sides of a conversation. Display more information in INFO column, similar to TCP. This is some progress towards #8792.
Diffstat (limited to 'epan/dissectors/packet-bt-utp.h')
-rw-r--r--epan/dissectors/packet-bt-utp.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bt-utp.h b/epan/dissectors/packet-bt-utp.h
new file mode 100644
index 0000000000..e21e62cee4
--- /dev/null
+++ b/epan/dissectors/packet-bt-utp.h
@@ -0,0 +1,34 @@
+/* packet-bt-utp.h
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __PACKET_BT_UTP_H__
+#define __PACKET_BT_UTP_H__
+
+#include "ws_symbol_export.h"
+
+#include <epan/conversation.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#if 0
+WS_DLL_PUBLIC void
+utp_dissect_pdus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+ gboolean proto_desegment, guint fixed_len,
+ guint (*get_pdu_len)(packet_info *, tvbuff_t *, int, void*),
+ dissector_t dissect_pdu, void* dissector_data);
+#endif
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif