FIXUP: WIP: verification_trailer
[wireshark-wip.git] / epan / dissectors / packet-rdt.h
blob4eef6d9acbd52e45add7ec7eb3b636ec6b85017b
1 /* packet-rdt.h
3 * Routines for RDT dissection
4 * RDT = Real Data Transport
6 * $Id$
8 * Written by Martin Mathieson
10 * Wireshark - Network traffic analyzer
11 * By Gerald Combs <gerald@wireshark.org>
12 * Copyright 1998 Gerald Combs
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 /* Info to save in RDT conversation / packet-info */
30 #define MAX_RDT_SETUP_METHOD_SIZE 7
31 struct _rdt_conversation_info
33 gchar method[MAX_RDT_SETUP_METHOD_SIZE + 1];
34 guint32 frame_number;
35 gint feature_level;
38 /* Add an RDT conversation with the given details */
39 void rdt_add_address(packet_info *pinfo,
40 address *addr, int port,
41 int other_port,
42 const gchar *setup_method,
43 gint rdt_feature_level);