Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-jxta.h
blobdf1321ab2922e5a14fdf2cb46bd39d82e537f9ef
1 /* packet-jxta.c
3 * Routines for JXTA packet dissection
4 * JXTA specification from https://jxta-spec.dev.java.net
6 * Copyright 2004-08, Mike Duigou <bondolo@dev.java.net>
8 * Heavily based on packet-jabber.c, which in turn is heavily based on
9 * on packet-acap.c, which in turn is heavily based on
10 * packet-imap.c, Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
11 * Copied from packet-pop.c, packet-jabber.c, packet-udp.c, packet-http.c
13 * Wireshark - Network traffic analyzer
14 * By Gerald Combs <gerald@wireshark.org>
15 * Copyright 2000 Gerald Combs
17 * SPDX-License-Identifier: GPL-2.0-or-later
19 #ifndef __PACKET_JXTA_H__
20 #define __PACKET_JXTA_H__
22 #include <epan/address.h>
24 /**
25 * Stream Conversation data
26 **/
27 typedef struct jxta_tap_header {
28 address src_address;
29 address dest_address;
30 uint32_t size;
31 } jxta_tap_header;
33 #endif