3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
10 #ifndef PACKET_ALCAP_H
11 #define PACKET_ALCAP_H
13 #include "packet-e164.h"
15 extern void alcap_tree_from_bearer_key(proto_tree
* tree
, tvbuff_t
* tvb
, packet_info
*pinfo
, const char* key
);
17 typedef struct _alcap_msg_data_t
{
20 struct _alcap_msg_data_t
* next
;
21 struct _alcap_msg_data_t
* last
;
24 typedef struct _alcap_leg_info_t
{
32 alcap_msg_data_t
* msgs
;
33 unsigned release_cause
;
37 typedef struct _alcap_message_info_t
{
46 unsigned release_cause
;
47 } alcap_message_info_t
;