Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-actrace.h
1/* packet-actrace.h
2 * Routines for AudioCodes Trunk traces packet disassembly
3 *
4 * Copyright (c) 2005 by Alejandro Vaquero <[email protected]>
5 *
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <[email protected]>
8 * Copyright 1999 Gerald Combs
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 */
12
13/* Container for tapping relevant data */
14typedef struct _actrace_info_t
15{
16 int type; /* ACTRACE_CAS=1 ACTRACE_ISDN=2 */
17 int direction; /* direction BLADE_TO_PSTN=0 PSTN_TO_BLADE=1 */
18 int trunk;
19 int32_t cas_bchannel;
20 const char *cas_frame_label;
22
Definition packet-actrace.h:15