wireshark/epan/dissectors/packet-rmt-common.h

90 lines
2.4 KiB
C

/* packet-rmt-common.h
* Reliable Multicast Transport (RMT)
* Common RMT function definitions
* Copyright 2005, Stefano Pettini <spettini@users.sourceforge.net>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 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_RMT_COMMON__
#define __PACKET_RMT_COMMON__
#include <epan/params.h>
/* LCT preferences */
#define LCT_PREFS_EXT_192_NONE 0
#define LCT_PREFS_EXT_192_FLUTE 1
#define LCT_PREFS_EXT_193_NONE 0
#define LCT_PREFS_EXT_193_FLUTE 1
extern const enum_val_t enum_lct_ext_192[];
extern const enum_val_t enum_lct_ext_193[];
/* String tables external references */
extern const value_string string_fec_encoding_id[];
/* Structures to exchange data between RMT dissectors */
/* ============================= */
typedef struct lct_data_exchange
{
/* inputs */
gint ext_192;
gint ext_193;
/* outputs */
guint8 codepoint;
gboolean is_flute;
} lct_data_exchange_t;
typedef struct fec_data_exchange
{
/* inputs */
guint8 encoding_id;
} fec_data_exchange_t;
/* Common RMT exported functions */
/* ============================= */
extern int lct_ext_decode(proto_tree *tree, tvbuff_t *tvb, packet_info *pinfo, guint offset, guint offset_max, lct_data_exchange_t *data_exchange,
int hfext, int ettext);
extern void fec_decode_ext_fti(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, guint8 encoding_id);
extern double rmt_decode_send_rate(guint16 send_rate );
#endif
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 8
* tab-width: 8
* indent-tabs-mode: t
* End:
*
* vi: set shiftwidth=8 tabstop=8 noexpandtab:
* :indentSize=8:tabSize=8:noTabs=false:
*/