change the signature that asn2wrs generates for functions to marm all parameters...
[obnox/wireshark/wip.git] / epan / dissectors / packet-alcap.h
1 /* packet-alcap.h
2  *
3  * $Id$
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 #include <epan/dissectors/packet-e164.h>
25
26 extern void alcap_tree_from_bearer_key(proto_tree* tree, tvbuff_t* tvb, const gchar* key);
27
28 typedef struct _alcap_msg_data_t {
29     guint msg_type;
30     guint framenum;
31     struct _alcap_msg_data_t* next;
32     struct _alcap_msg_data_t* last;
33 } alcap_msg_data_t;
34
35 typedef struct _alcap_leg_info_t  {
36         guint32 dsaid;
37         guint32 osaid;
38         guint32 pathid;
39         guint32 cid;
40         guint32 sugr;
41         gchar* orig_nsap;
42         gchar* dest_nsap;
43     alcap_msg_data_t* msgs;
44     guint release_cause;
45 } alcap_leg_info_t;
46
47
48 typedef struct _alcap_message_info_t {
49         guint msg_type;
50         guint32 dsaid;
51         guint32 osaid;
52         guint32 pathid;
53         guint32 cid;
54         guint32 sugr;
55         gchar* orig_nsap;
56         gchar* dest_nsap;
57     guint release_cause;
58 } alcap_message_info_t;
59