Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-actrace.h
1 /* packet-actrace.h
2  * Routines for AudioCodes Trunk traces packet disassembly
3  *
4  * Copyright (c) 2005 by Alejandro Vaquero <alejandro.vaquero@verso.com>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1999 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 /* Container for tapping relevant data */
14 typedef 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  gint32 cas_bchannel;
20  const gchar *cas_frame_label;
22 
Definition: packet-actrace.h:15