Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-jxta.h
1 /* packet-jxta.c
2  *
3  * Routines for JXTA packet dissection
4  * JXTA specification from https://jxta-spec.dev.java.net
5  *
6  * Copyright 2004-08, Mike Duigou <bondolo@dev.java.net>
7  *
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
12  *
13  * Wireshark - Network traffic analyzer
14  * By Gerald Combs <gerald@wireshark.org>
15  * Copyright 2000 Gerald Combs
16  *
17  * SPDX-License-Identifier: GPL-2.0-or-later
18  */
19 #ifndef __PACKET_JXTA_H__
20 #define __PACKET_JXTA_H__
21 
22 #include <glib.h>
23 #include <epan/address.h>
24 
28 typedef struct jxta_tap_header {
29  address src_address;
30  address dest_address;
31  guint32 size;
33 
34 #endif
Definition: address.h:56
Definition: packet-jxta.h:28