some compilers dont like unnamed unions and structs
[obnox/wireshark/wip.git] / epan / dissectors / packet-jxta.h
1 /* packet-jxta.h
2  * Routines for JXTA packet dissection
3  * Copyright 2004-05, Mike Duigou <bondolo@jxta.org>
4  * Heavily based on packet-jabber.c, which in turn is heavily based on 
5  * on packet-acap.c, which in turn is heavily based on 
6  * packet-imap.c, Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
7  *
8  * $Id$
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
12  * Copyright 1998 Gerald Combs
13  *
14  * Copied from packet-pop.c, packet-jabber.c, packet-udp.c
15  *
16  * JXTA specification from http://spec.jxta.org
17  *
18  * This program is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU General Public License
20  * as published by the Free Software Foundation; either version 2
21  * of the License, or (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  */
32 #ifndef __PACKET_JXTA_H__
33 #define __PACKET_JXTA_H__
34 #include <glib.h>
35
36 #include <epan/packet.h>
37
38 /**
39 *   Stream Conversation data
40 **/
41 typedef struct jxta_tap_header {
42     address src_address;
43     address dest_address;
44     guint32 size;
45 } jxta_tap_header;
46 #endif