Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-alcap.h
1 /* packet-alcap.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef PACKET_ALCAP_H
11 #define PACKET_ALCAP_H
12 
13 #include "packet-e164.h"
14 
15 extern void alcap_tree_from_bearer_key(proto_tree* tree, tvbuff_t* tvb, packet_info *pinfo, const gchar* key);
16 
17 typedef struct _alcap_msg_data_t {
18  guint msg_type;
19  guint framenum;
20  struct _alcap_msg_data_t* next;
21  struct _alcap_msg_data_t* last;
23 
24 typedef struct _alcap_leg_info_t {
25  guint32 dsaid;
26  guint32 osaid;
27  guint32 pathid;
28  guint32 cid;
29  guint32 sugr;
30  gchar* orig_nsap;
31  gchar* dest_nsap;
32  alcap_msg_data_t* msgs;
33  guint release_cause;
35 
36 
37 typedef struct _alcap_message_info_t {
38  guint msg_type;
39  guint32 dsaid;
40  guint32 osaid;
41  guint32 pathid;
42  guint32 cid;
43  guint32 sugr;
44  gchar* orig_nsap;
45  gchar* dest_nsap;
46  guint release_cause;
48 
49 #endif
Definition: packet-alcap.h:24
Definition: packet-alcap.h:37
Definition: packet-alcap.h:17
Definition: packet_info.h:44
Definition: proto.h:904
Definition: tvbuff-int.h:35