summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-jxta.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/dissectors/packet-jxta.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-jxta.h')
-rw-r--r--epan/dissectors/packet-jxta.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/epan/dissectors/packet-jxta.h b/epan/dissectors/packet-jxta.h
new file mode 100644
index 00000000..a8d6c02d
--- /dev/null
+++ b/epan/dissectors/packet-jxta.h
@@ -0,0 +1,34 @@
+/* packet-jxta.c
+ *
+ * Routines for JXTA packet dissection
+ * JXTA specification from https://jxta-spec.dev.java.net
+ *
+ * Copyright 2004-08, Mike Duigou <bondolo@dev.java.net>
+ *
+ * Heavily based on packet-jabber.c, which in turn is heavily based on
+ * on packet-acap.c, which in turn is heavily based on
+ * packet-imap.c, Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
+ * Copied from packet-pop.c, packet-jabber.c, packet-udp.c, packet-http.c
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 2000 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+#ifndef __PACKET_JXTA_H__
+#define __PACKET_JXTA_H__
+
+#include <glib.h>
+#include <epan/address.h>
+
+/**
+* Stream Conversation data
+**/
+typedef struct jxta_tap_header {
+ address src_address;
+ address dest_address;
+ guint32 size;
+} jxta_tap_header;
+
+#endif