Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
tap-voip.h
Go to the documentation of this file.
1
11#pragma once
12/* defines voip call state */
13typedef enum _voip_call_state {
14 VOIP_NO_STATE,
15 VOIP_CALL_SETUP,
16 VOIP_RINGING,
17 VOIP_IN_CALL,
18 VOIP_CANCELLED,
19 VOIP_COMPLETED,
20 VOIP_REJECTED,
21 VOIP_UNKNOWN
22} voip_call_state;
23
24typedef enum _voip_call_active_state {
25 VOIP_ACTIVE,
26 VOIP_INACTIVE
27} voip_call_active_state;
28
29/* structure for common/proprietary VoIP calls TAP */
30typedef struct _voip_packet_info_t
31{
32 char *protocol_name;
33 char *call_id;
34 voip_call_state call_state;
35 voip_call_active_state call_active_state;
36 char *from_identity;
37 char *to_identity;
38 char *call_comment;
39 char *frame_label;
40 char *frame_comment;
Definition tap-voip.h:31