Wireshark
4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
epan
tap-voip.h
Go to the documentation of this file.
1
11
#pragma once
12
/* defines voip call state */
13
typedef
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
24
typedef
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 */
30
typedef
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;
41
}
voip_packet_info_t
;
_voip_packet_info_t
Definition
tap-voip.h:31
Generated by
1.9.8