Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
tap-voip.h
Go to the documentation of this file.
1
10#ifndef __TAP_VOIP_H__
11#define __TAP_VOIP_H__
12
13#include "ui/voip_calls.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
19/* store the chosen calls in a bit-array */
20#define VOIP_CONV_BITS (sizeof(int) * 8)
21#define VOIP_CONV_NUM ((1<<(sizeof(uint16_t) * 8))/VOIP_CONV_BITS)
22#define VOIP_CONV_MAX (VOIP_CONV_BITS * VOIP_CONV_NUM)
23
24extern voip_calls_tapinfo_t tapinfo_;
25extern int voip_conv_sel[VOIP_CONV_NUM];
26extern void voip_stat_init_tapinfo(void);
27
28#ifdef __cplusplus
29}
30#endif /* __cplusplus */
31
32#endif /* __TAP_VOIP_H__ */
33
34/*
35 * Editor modelines - https://www.wireshark.org/tools/modelines.html
36 *
37 * Local variables:
38 * c-basic-offset: 8
39 * tab-width: 8
40 * indent-tabs-mode: t
41 * End:
42 *
43 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
44 * :indentSize=8:tabSize=8:noTabs=false:
45 */
Definition voip_calls.h:173