Wireshark
4.5.0
The Wireshark network protocol analyzer
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
Variables
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
m
o
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
Typedefs
a
b
c
d
e
f
g
h
i
m
p
r
s
t
u
v
w
Enumerations
Enumerator
a
b
c
e
f
h
i
n
o
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
epan
tap-voip.h
Go to the documentation of this file.
1
12
#ifndef _TAP_VOIP_H_
13
#define _TAP_VOIP_H_
14
15
/* defines voip call state */
16
typedef
enum
_voip_call_state {
17
VOIP_NO_STATE,
18
VOIP_CALL_SETUP,
19
VOIP_RINGING,
20
VOIP_IN_CALL,
21
VOIP_CANCELLED,
22
VOIP_COMPLETED,
23
VOIP_REJECTED,
24
VOIP_UNKNOWN
25
} voip_call_state;
26
27
typedef
enum
_voip_call_active_state {
28
VOIP_ACTIVE,
29
VOIP_INACTIVE
30
} voip_call_active_state;
31
32
/* structure for common/proprietary VoIP calls TAP */
33
typedef
struct
_voip_packet_info_t
34
{
35
char
*protocol_name;
36
char
*call_id;
37
voip_call_state call_state;
38
voip_call_active_state call_active_state;
39
char
*from_identity;
40
char
*to_identity;
41
char
*call_comment;
42
char
*frame_label;
43
char
*frame_comment;
44
}
voip_packet_info_t
;
33
typedef
struct
_voip_packet_info_t
{
…
};
45
46
#endif
/* _TAP_VOIP_H_ */
_voip_packet_info_t
Definition
tap-voip.h:34
Generated by
1.9.8