Wireshark
4.3.0
The Wireshark network protocol analyzer
epan
dissectors
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;
22
}
alcap_msg_data_t
;
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;
34
}
alcap_leg_info_t
;
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;
47
}
alcap_message_info_t
;
48
49
#endif
_alcap_leg_info_t
Definition:
packet-alcap.h:24
_alcap_message_info_t
Definition:
packet-alcap.h:37
_alcap_msg_data_t
Definition:
packet-alcap.h:17
_packet_info
Definition:
packet_info.h:44
_proto_node
Definition:
proto.h:904
tvbuff
Definition:
tvbuff-int.h:35
Generated by
1.9.1