Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-alcap.h
1/* packet-alcap.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
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
15extern void alcap_tree_from_bearer_key(proto_tree* tree, tvbuff_t* tvb, packet_info *pinfo, const char* key);
16
17typedef struct _alcap_msg_data_t {
18 unsigned msg_type;
19 unsigned framenum;
20 struct _alcap_msg_data_t* next;
21 struct _alcap_msg_data_t* last;
23
24typedef struct _alcap_leg_info_t {
25 uint32_t dsaid;
26 uint32_t osaid;
27 uint32_t pathid;
28 uint32_t cid;
29 uint32_t sugr;
30 char* orig_nsap;
31 char* dest_nsap;
32 alcap_msg_data_t* msgs;
33 unsigned release_cause;
35
36
37typedef struct _alcap_message_info_t {
38 unsigned msg_type;
39 uint32_t dsaid;
40 uint32_t osaid;
41 uint32_t pathid;
42 uint32_t cid;
43 uint32_t sugr;
44 char* orig_nsap;
45 char* dest_nsap;
46 unsigned release_cause;
48
49#endif
Definition packet-alcap.h:24
Definition packet-alcap.h:37
Definition packet-alcap.h:17
Definition packet_info.h:43
Definition proto.h:901
Definition tvbuff-int.h:35