/* packet-jxta.c * * Routines for JXTA packet dissection * JXTA specification from https://jxta-spec.dev.java.net * * Copyright 2004-08, Mike Duigou * * 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 * Copied from packet-pop.c, packet-jabber.c, packet-udp.c, packet-http.c * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 2000 Gerald Combs * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __PACKET_JXTA_H__ #define __PACKET_JXTA_H__ #include #include /** * Stream Conversation data **/ typedef struct jxta_tap_header { address src_address; address dest_address; guint32 size; } jxta_tap_header; #endif