change the signature that asn2wrs generates for functions to marm all parameters...
[obnox/wireshark/wip.git] / epan / dissectors / packet-rdt.h
1 /* packet-rdt.h
2  *
3  * Routines for RDT dissection
4  * RDT = Real Data Transport
5  *
6  * $Id$
7  *
8  * Written by Martin Mathieson
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
12  * Copyright 1998 Gerald Combs
13  *
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.
18  *
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.
23  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 /* Info to save in RDT conversation / packet-info */
30 #define MAX_RDT_SETUP_METHOD_SIZE 7
31 struct _rdt_conversation_info
32 {
33     gchar   method[MAX_RDT_SETUP_METHOD_SIZE + 1];
34     guint32 frame_number;
35     gint    feature_level;
36 };
37
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);
44