3 * VoIP packet tap interface 2007 Tomas Kukosa
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
15 /* defines voip call state */
16 typedef enum _voip_call_state
{
27 typedef enum _voip_call_active_state
{
30 } voip_call_active_state
;
32 /* structure for common/proprietary VoIP calls TAP */
33 typedef struct _voip_packet_info_t
37 voip_call_state call_state
;
38 voip_call_active_state call_active_state
;
46 #endif /* _TAP_VOIP_H_ */